Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Git操作入门


git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/bdapp/test.git

git status

git add . 
git status


vim .gitignore
*.bak
build/

git diff
git commit -m "注释"

git rm 文件
git mv 文件

git log
git branch
git checkout 分支名


git push origin 分支
git pull