You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# get the code
git clone [email protected]:nan-ci/platform.git
# or use https://github.com/nan-ci/platform.git# open the directorycd platform
# run dev server
npm start
Contribute
Find or Create an issue
Create your branch
git checkout -b feature-name
Rebase before mergeing
# make sure you are on your branche
git checkout feature-name
# make sure we are up to date
git fetch
# rebase from master
git rebase origin/master
# force update your branch
git push orgin HEAD --force-with-lease