Skip to content

Instantly share code, notes, and snippets.

@neesonqk
Last active October 3, 2018 09:51
Show Gist options
  • Save neesonqk/1736d22ec39a38c0a09a38e66fdb261c to your computer and use it in GitHub Desktop.
Save neesonqk/1736d22ec39a38c0a09a38e66fdb261c to your computer and use it in GitHub Desktop.
Git configuration command
#init
git init
# disable ssl verification
git config http.sslVerify false
# set proxy
git config http.proxy http://192.168.15.70:8899
# init repo
git remote add origin https://203.127.252.44/git/scc-ui/iExpo.git
git add .
git commit -m "Initial commit"
git push -u origin master
# clone from remote
git clone https://203.127.252.44/git/scc-ui/iExpo.git
# remove proxy
git config --unset http.proxy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment