Giter VIP home page Giter VIP logo

superstarter's Introduction

SuperStarter

The ultimate starter script for cool projects

About

Superstarter is a powershell script that allows you to perform task that you normally would have to do manually, automatically.

How to

Clone the repository "git clone https://github.com/stengard/SuperStarter.git"

To use SuperStarter. Simply start the script in a powershell command window and write .\SuperStarter.ps1

You will be presented with a menu with choices. Select which project you want to use. The projects can be configured in the /config/config.json file

How to

Contribute (guide for Alexander)

  1. Create a new feature branch called "alex-feature" based on master and changes to it.

git checkout -b alex-feature master

  1. Start working to make your changes
  2. Alex do some changes and adds one or several commits.

git status
git add (or .)
git commit

  1. This command pushes alex-feature to the central repository (origin), and the -u flag adds it as a remote tracking branch. After setting up the tracking branch, Alex can call git push without any parameters to push his feature.

git push -u origin alex-feature

  1. Alex has finished his changes. Before merging it into master, he needs to file a pull request letting the rest of the team know she's done. But first, he should make sure the central repository has his most recent commits:

git push

  1. First, whoever’s performing the merge needs to check out their master branch and make sure it’s up to date. Then, git pull origin alex-feature merges the central repository’s copy of alex-feature. You could also use a simple git merge alex-feature, but the command shown above makes sure you’re always pulling the most up-to-date version of the feature branch. Finally, the updated master needs to get pushed back to origin.

git checkout master
git pull
git pull origin alex-feature
git push

superstarter's People

Contributors

stengard avatar axelsander avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.