常用命令
1.初始化本地库
git init
2.添加文件到本地库 (例如 hello.c 前提保证文件已经存在)
git add hello.c
3.提交到本地库
1)git commit -m “first commit” // 提交并添加备注
2)git commit -a //自动更新变化文件
两种方法都可以
4.创建远程库别名
git remote add origin git@github.com:bulabula001/Project.git
其中 origin是 git@github.com:bulabula001/Project.git 的别名
4.同步远程github库到本地库
git pull origin master
5.同步本地库到远程库
git push -u origin master
新建仓库的提示
在git上新建git仓库的时候,会有以下提示,比如我新建了 static_detect.git时候会提示有以下帮助信息,如何去运行。
echo "# static_detect" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:bulabula001/static_detect.git
git push -u origin master
阅读(1718) | 评论(1) | 转发(0) |