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

https://github.com/casprwang/git-it

A 2017-ish way to efficiently set up a standard git repo
https://github.com/casprwang/git-it

Last synced: 7 months ago
JSON representation

A 2017-ish way to efficiently set up a standard git repo

Awesome Lists containing this project

README

          

# use git -rebase to set up a less messy git repo

### Example for a Node project
1. add a new repo on github website
2. add gitginore and LICENSE in the setup page
3. copy the git URL on your repo page
4. `mkdir` and `cd` to you project
5. `npm init` and input your project name and git link and stuff
6. `git remote add {remote name} {URL}`
7. `git pull --rebase {remote name} {branch name || master}`
8. terminal:
```
$ git add .
$ git commit -m ''
$ git push {remote name} {branch}
```

### benefits
* no need to write `.gitignore`
* setup remote name
* less confilcts