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

https://github.com/sandysanthosh/git

Git Basic Commands
https://github.com/sandysanthosh/git

git github

Last synced: about 1 month ago
JSON representation

Git Basic Commands

Awesome Lists containing this project

README

          

# git

Welcome to the git wiki!

### Create a new repository on the command line

* git init
* git add README.md
* git commit -m "first commit"
* git remote add origin https://github.com/sandysanthosh/git.git
* git push -u origin master

### Push an existing repository from the command line

* git remote add origin https://github.com/sandysanthosh/git.git
* git push -u origin master