git 如何提交到github

好记性不如烂笔头,日常记录才能不会忘记

git 提交到 github流程
1
2
3
4
5
6
7
1. git clone   xxxx      //克隆远程仓库到本地
2. git pull //拉取服务器代码
3. git status //查看当前目录工作状态
4. git add + //将修改过的文件全部提交缓存
5. git commit -m "注释" //提交到本地仓库
6. git remote add origin git@github.com:defnngj/hello-world.git //连接远程仓库
7. git push -u origin master //提交到mater 分支
git 其他命令
1
2
3
4
5
6
7
8
9
10
11
git push origin master   //把本地源码库push到Github上
git pull origin master //从Github上pull到本地源码库
git config --list //查看配置信息
git status //查看项目状态信息
git branch //查看项目分支
git checkout -b host //添加一个名为host的分支
git checkout master //切换到主干
git merge host //合并分支host到主干
git branch -d host //删除分支host
git remote -v //查看当前在哪一个远程仓库