Skip to content

Instantly share code, notes, and snippets.

@MahmudHasanCSE
Last active September 24, 2019 11:30
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 MahmudHasanCSE/a9319ed45af522a8907eed6325e07b4a to your computer and use it in GitHub Desktop.
Save MahmudHasanCSE/a9319ed45af522a8907eed6325e07b4a to your computer and use it in GitHub Desktop.
##Command line instructions##
#Git global setup
git config --global user.name "Mahmud Al Hasan"
git config --global user.email "mahmud@datashall.com"
#Create a new repository
git clone https://gitlab.com/zero.fighter/test.git
cd test
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/zero.fighter/test.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/zero.fighter/test.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