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
- Host: GitHub
- URL: https://github.com/sandysanthosh/git
- Owner: sandysanthosh
- Created: 2020-07-18T07:55:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-18T08:01:20.000Z (almost 6 years ago)
- Last Synced: 2025-02-28T20:57:54.595Z (over 1 year ago)
- Topics: git, github
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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