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

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

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
```