标签:commit git push mit class ignore git add 本地 code ranch
cd [项目目录下]
git init
项目目录下
touch .gitignore
vim .gitignore
.
表示提交除了.gitignore
中忽略文件外的所有文件
git add .
git commit -m ‘项目备注‘ .
必须在提交本地仓库以后才能创建分支
git branch [分支名字]
git branch # 可以查看分支,有 * 的为当前所在分支
git checkout [分支名字] # 切换到某个分支下
git remote add [项目别名] [远程仓库地址]
git pull [别名] [远程仓库中的分支名字] # 拉取最新版本,有时可省略该步
git push [项目别名] [远程仓库分支名]
标签:commit git push mit class ignore git add 本地 code ranch
原文地址:https://www.cnblogs.com/linagcheng/p/12582354.html