https://github.com/ggpio18/basic-github-commands
Basic commands for github
https://github.com/ggpio18/basic-github-commands
git-commands git-config github
Last synced: 3 months ago
JSON representation
Basic commands for github
- Host: GitHub
- URL: https://github.com/ggpio18/basic-github-commands
- Owner: ggpio18
- License: mit
- Created: 2024-07-05T15:12:37.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-07-05T15:38:41.000Z (12 months ago)
- Last Synced: 2025-02-05T12:38:53.553Z (5 months ago)
- Topics: git-commands, git-config, github
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GITHUB COMMANDS PIO
## CLONING
```
git clone
```# SINGINING IN
```
git config --global user."EMAIL"
``````
git config --global user.name "username"
```# PUSH
```
git fetch
``````
git add .
``````
git commit -m "first commit"
``````
git push -u origin main
```# COMMIT IN NEW REPO
```
git init
```
- git add README.md```
git add .
``````
git commit -m "first commit"
``````
git branch -M main
``````
git remote add origin https://github.com/uShire/microsoft2022.git
``````
git push -u origin main
```# MASTER
```
git checkout aranza
``````
git fetch
``````
git checkout main
``````
git merge aranza
``````
git pull
``````
git add .
``````
git commi -m "first commit"
``````
hit push -u origin master
```