标签:name nal ant min struct config col AC conf
To get started you will need to run these commands in your terminal.
git config --global user.name "fhw" git config --global user.email "fhw@xxx.com"
If you want to simply clone this empty repository then run this command in your terminal.
git clone ssh://git@git.xxx.com/~fhw/demo.git
If you already have code ready to be pushed to this repository then run this in your terminal.
cd existing-project git init git add --all 或者 git add . git commit -m "Initial Commit" git remote add origin ssh://git@git.xxx.com/~fhw/demo.git git push origin master
If your code is already tracked by Git then set this repository as your "origin" to push to.
cd existing-project git remote set-url origin ssh://git@git.xxx.com/~fhw/demo.git git push origin master
标签:name nal ant min struct config col AC conf
原文地址:https://www.cnblogs.com/fhwup/p/8906021.html