git 上传项目

参考:http://jingyan.baidu.com/article/27fa732683ebf546f8271f2e.html

1. 初始化git

2. 在github上创建项目,获取git地址(http://source.jd.com/app/test.git)

3. 远程添加git到github仓库上(注意:一定要在你项目目录中 git remote add <remote-name> <remote-url>)

4. git pull(拉下最新的代码)

5. git add . (把当前文件添加到本地仓库中)

6. git commit -m 'init' (把代码提交到本地仓库中)

7. git push origin main(push到远程main分支)

8. 基本命令

git status
git add
git commit -m "注释"
git push origin main
git pull
git push
git log --abbrev-commit --pretty=online
git diff 
git push origin main
git rm -rf --cached .settings  
git log --word-diff --abbrev-commit --pretty=online


你可能感兴趣的:(git 上传项目)