Skip to content

Instantly share code, notes, and snippets.

@tosin2013
Created December 20, 2016 15:54
Show Gist options
  • Save tosin2013/5d0dde12afe86aef3cfa4cc53323620b to your computer and use it in GitHub Desktop.
Save tosin2013/5d0dde12afe86aef3cfa4cc53323620b to your computer and use it in GitHub Desktop.
initiazile git on client
mkdir my_project
cd my_project
touch .gitignore
git init
git add .
git commit -m "Initial commit"
git remote add origin youruser@yourserver.com:/path/to/my_project.git
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment