Skip to content

Local Git server sync commands #

  • Commiting code to your local Git server

    • It is recommended to get TLS/SSL working
    • Make sure to change
  • <domain>

  • <username>
  • <email>
  • <commit_message>
1
2
3
4
git -c http.sslVerify=false clone http://git.<domain>/<username>/scripts.git
git config --global user.email "<email>" && git config --global user.name "<username>"
git commit "<commit_message>"
git -c http.sslVerify=false push

Last update: January 22, 2021