Skip to content

gray380/new-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

new-project

This repository uses a development branch for feature work. Follow the steps below to create the branch, commit changes, and merge into main.

Quickstart

# fetch
git fetch origin

# create & switch to development
git checkout -b development

# add your changes (example: README already exists)
git add README.md
git commit -m "PROJ-1 #comment add developer instructions #time 10m #done"

# push development branch
git push -u origin development

# (option A) merge via PR on GitHub
# open PR: compare = development -> base = main

# (option B) merge locally
git checkout main
git pull --ff-only
git merge --no-ff development -m "merge: development -> main"
git push origin main

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors