之前有用过一次,但是一直弄不明白怎么用,今天我又试了一下,成功了,现在我就记录下来,为了以后的使用以及帮助那些跟我原先一样不会用的同学
进入正题:
Step 1:
注册GitHub账号 https://github.com
Step 2:
下载 msysgit 这个有许多版本,我用的是 Windows ,你们根据自己的系统选择 点击这里去下载
注意:记得勾选,不然鼠标右键没有选项。
Step 3:
配置Git 。
首先在本地创建ssh key;
$ ssh-keygen -t rsa -C "your_email@youremail.com"
your_email@youremail.com改为你的邮箱,之后会要求确认路径和输入密码,使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。路径在命令行里,你找找就知道了
回到github 网站,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key(所有字符)。为了验证是否成功,在git bash下输入:
$ ssh -T git@github.com
如果是第一次的会提示是否continue,输入yes就会看到:You’ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。
接下来我们要做的就是把本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都会记录他们。
$ git config --global user.name "your name"
$ git config --global user.email "your_email@youremail.com"
进入要上传的仓库
首先在github 网站上条件一个仓库,然后在本地你要添加的文件夹(我取的名字是一样的)里右键Git Init Here
右键git bash,添加远程地址:
$ git remote add origin <a href=""mailto:git@github.com"" target=""_blank"">git@github.com</a>:your name/yourRepo.git
后面的yourName和yourRepo表示你再github的用户名和刚才新建的仓库 Step 4:
添加、提交
$ git add filename
$ git commit -m "这里是注释"
上传到github:
$ git push origin master
git push命令会将本地仓库推送到远程服务器。
git pull命令则相反。
修改完代码后,使用git status可以查看文件的差别,使用git add 添加要commit的文件,也可以用git add -i来智能添加文件。之后git commit提交本次修改,git push上传到github。
当有提交修改的时候就直接
$ git add *
Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:Bonkebo/schoolboy.git
git push -u origin master
Push an existing repository from the command line
git remote add origin git@github.com:Bonkebo/schoolboy.git
git push -u origin master
推荐浏览: