推送现有文件夹
bash
cd existing_folder
git init
git remote add origin git@10.200.5.138:taps/archetech.git
git add .
git commit -m "Initial commit"
git pull -u origin master
另外
bash
git branch -b new_branch //创建本地分支并切换
git branch //查看本地分支
git branch <name> //创建name的分支
git branch -r //查看远程分支
git branch -a //查看本地分支和远程分支
git branch -vv //查看本地分支对应的远程分支