An open API service indexing awesome lists of open source software.

https://github.com/ahmedalyelghannam/git_cheatsheet


https://github.com/ahmedalyelghannam/git_cheatsheet

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# Git_Cheatsheet

## Creating a Remote Repository and Cloning It Locally
1. Open your Github account and press on the green box titled `New Repository`.
2. Enter a name for your repository.
3. Add a README file (mandatory).
4. Add .gitignore file (optional).
5. Add a licence (optional).
6. Press `Create Repository`.
7. Press on the green box titled `<> Code`.
8. Copy the ssh link for your repository. (You need to create an ssh key beforehand)
9. Open your terminal (Linux) and navigate to the directory you want to clone the repo into then enter the command:
```
git clone ssh_link@github
```
10. Done! Now you can edit it and push your local progress remotely!

## Creating a Local Repository and Pushing It Remotely on Github
1.