https://github.com/dlsiem/commands
https://github.com/dlsiem/commands
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dlsiem/commands
- Owner: DLSiem
- Created: 2024-02-06T20:41:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-07T12:44:25.000Z (over 1 year ago)
- Last Synced: 2025-01-18T05:29:44.588Z (5 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```##