Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 871 Bytes

File metadata and controls

38 lines (29 loc) · 871 Bytes

SmartCampusMaua Open-Source Docs

See _Template to see how to create a new doc. Recommended use with Obsidian and Excalidraw Plugin.

  • Clone this Github Repository to local files:
git clone https://github.com/SmartCampusMaua/Docs
  • Checkout to a new local branch:
git checkout -b feature/NAME_OF_NEW_FEATURE
  • Create new Things!

  • Add new things to the created branch:

git add .
git commit -m "add NAME_OF_NEW_FEATURE"
git push origin feature/NAME_OF_NEW_FEATURE
  • Create a Pull Request in Github

  • Delete the Branch in Github

  • Update local develop branch:

git checkout -b develop
git pull origin develop
  • Remove the feature/NAME_OF_NEW_FEATURE branch
git branch -d feature/NAME_OF_NEW_FEATURE