Skip to content

Instantly share code, notes, and snippets.

@viztastic
Last active November 2, 2018 02:10
Show Gist options
  • Save viztastic/ee8b58e0ee274f21bcae611998a0718b to your computer and use it in GitHub Desktop.
Save viztastic/ee8b58e0ee274f21bcae611998a0718b to your computer and use it in GitHub Desktop.
Git Notes

Need to overwrite remote codebase with new git folder.

Git global setup

git config --global user.name "Ahmed"
git config --global user.email "ahmed.dhahbi@gmail.com"

Create a new repository

git clone git@gitlab.com:skyledge/product-roadmap.git
cd product-roadmap
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 git@gitlab.com:skyledge/product-roadmap.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 git@gitlab.com:skyledge/product-roadmap.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