Skip to content

Instantly share code, notes, and snippets.

@Rachitlohani
Created December 1, 2014 21:14
Show Gist options
  • Save Rachitlohani/92124669eb3416d4199d to your computer and use it in GitHub Desktop.
Save Rachitlohani/92124669eb3416d4199d to your computer and use it in GitHub Desktop.
GIT
You have an empty repository. To get started you will need to run these commands in your terminal.
Configure Git for the first time
git config --global user.name "Rachit Lohani"
git config --global user.email "RLohani@Videologygroup.com"
Working with your repository. I just want to clone this repository. If you want to simply clone this empty repository then run this command in your terminal.
git clone https://RLohani@git.gio.videologygroup.com/scm/gio/fte.git
My code is ready to be pushed. If you already have code ready to be pushed to this repository then run this in your terminal.
cd existing-project
git init
git add --all
git commit -m "Initial Commit"
git remote add origin https://RLohani@git.gio.videologygroup.com/scm/gio/fte.git
git push origin master
My code is already tracked by Git. If your code is already tracked by Git then set this repository as your "origin" to push to.
cd existing-project
git remote set-url origin https://RLohani@git.gio.videologygroup.com/scm/gio/fte.git
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment