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

https://github.com/dlsiem/commands


https://github.com/dlsiem/commands

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# github-commands

```
git --help
```

##

Clone a remote repository

```
git clone https://github.com/username/repo_name.git
```

##

Commit and push changes to remote repo( assume repo in main branch )

```
git add .
git commit -m "add comment"
git push origin main
```

##

List commits history ( press 'q' to exit log )

```
git log
```

##