- 本地 android studio 项目
-
如图
屏幕快照 2019-04-20 23.26.12.png
Command line instructions
Git global setup
git config --global user.name "your name"
git config --global user.email "your email"
Create a new repository
git clone ssh://git@git.***.net:80/boss/android-u/u.git
cd yourdir
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder
cd existing_folder
git init
git remote add origin ssh://git@git.***.net:80/boss/android-u/u.git
git add .
git commit
git push -u origin master
Existing Git repository
cd existing_repo
git remote add origin ssh://git@git.***.net:80/boss/android-u/u.git
git push -u origin --all
git push -u origin --tags
网友评论