标签:http comm ini style 打开 git push first size 初始
git常用命令
http://www.cnblogs.com/chenwolong/p/GIT.html
使用git在本地创建一个项目的过程
$ makdir ~/hello-world //创建一个项目hello-world
$ cd ~/hello-world //打开这个项目
#或者进入一个文件夹 然后初始化它
$ git init //初始化
$ git add README //更新README文件
#或者 git add . #更新所有
$ git commit -m ‘first commit‘ //提交更新,并注释信息“first commit”
$ git remote add origin git@github.com:defnngj/hello-world.git //连接远程github项目
$ git push -u origin master //将本地项目更新到github项目上去
标签:http comm ini style 打开 git push first size 初始
原文地址:https://www.cnblogs.com/lonelyshy/p/9943018.html