Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashfaqalizardariofficial/githubdocsgitcommands
https://github.com/ashfaqalizardariofficial/githubdocsgitcommands
Last synced: about 23 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ashfaqalizardariofficial/githubdocsgitcommands
- Owner: AshfaqAliZardariOfficial
- License: mit
- Created: 2023-07-01T15:38:07.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-07-01T15:51:35.000Z (over 1 year ago)
- Last Synced: 2024-11-11T09:35:55.867Z (about 2 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Docs Git Commands
## 01. Create a new branch from an existing branch
```
git checkout -b development master
```
> NOTE: The development is the new branch and is being created from the master branch.
## 02. Push the newly created development branch to GitHub
```
git push origin development
```
> NOTE: The development new branch will be pushed on GitHub.