Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ashfaqalizardariofficial/githubdocsgitcommands


https://github.com/ashfaqalizardariofficial/githubdocsgitcommands

Last synced: about 23 hours ago
JSON representation

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.