Git in ADS
Here, I illustruate the activiities while I installed a ADS server, and move a project from another company official respository.
The ADS is installed on local PC. you have to create a project after successful install ADS.
#clean the .git folder while copy the source code from other repo
rm -rf .git
#config the user name
git remote add origin http://username:password@address
it is different with the global config
#bypass http proxy
git config --local http http.proxy ""