Skip to content

Instantly share code, notes, and snippets.

@Nattarat
Last active December 10, 2018 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nattarat/eb3731c026a34e0a52cc00c65885498d to your computer and use it in GitHub Desktop.
Save Nattarat/eb3731c026a34e0a52cc00c65885498d to your computer and use it in GitHub Desktop.
New Git: Command line instructions
// Git global setup
git config --global user.name "Nattarat Srila"
git config --global user.email "nattarat.design@gmail.com"
// Create a new repository
git clone https://gitlab.com/nattarat_sr/merge_request_training.git
cd merge_request_training
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
// Existing folder
cd existing_folder
git init
git remote add origin https://gitlab.com/nattarat_sr/merge_request_training.git
git add .
git commit -m "Initial commit"
git push -u origin master
// Existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin https://gitlab.com/nattarat_sr/merge_request_training.git
git push -u origin --all
git push -u origin --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment