Skip to content

Instantly share code, notes, and snippets.

@Shamim-38
Created October 10, 2020 07:15
Show Gist options
  • Save Shamim-38/62750ec5d5abae930631ca79ca152c76 to your computer and use it in GitHub Desktop.
Save Shamim-38/62750ec5d5abae930631ca79ca152c76 to your computer and use it in GitHub Desktop.
Create a new repository on GitHub. You can also add a gitignore file, a readme and a licence if you want
Open Git Bash
Change the current working directory to your local project.
Initialize the local directory as a Git repository.
git init
Add the files in your new local repository. This stages them for the first commit.
git add .
Commit the files that you’ve staged in your local repository.
git commit -m "initial commit"
Copy the https url of your newly created repo
In the Command prompt, add the URL for the remote repository where your local repository will be pushed.
git remote add origin remote repository URL
git remote -v
Push the changes in your local repository to GitHub.
git push -f origin master
That’s all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment