Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shearichard/gittesttemp
git branch testing - temporary only
https://github.com/shearichard/gittesttemp
Last synced: about 7 hours ago
JSON representation
git branch testing - temporary only
- Host: GitHub
- URL: https://github.com/shearichard/gittesttemp
- Owner: shearichard
- License: apache-2.0
- Created: 2014-11-20T08:26:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-20T09:27:17.000Z (almost 10 years ago)
- Last Synced: 2023-03-22T16:57:10.540Z (over 1 year ago)
- Language: Python
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gittesttemp
===========A temporary repos to test maintaining remote branches
Learning
=====
Once having created a new feature branch as long as you keep pushing to the corresponding remote feature branch then both branches will happily co-exist and as long as you have used git to set the current branch then when you run the code locally either the master or the feature branch will be run.Here's an example of how to set this up :
```
$ git checkout -b feature_branch_name
... edit files, add and commit ...
$ git push -u origin feature_branch_name
```