Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 841 Bytes

guide.md

File metadata and controls

61 lines (39 loc) · 841 Bytes

IEEE SB IPB Site

Pre-requisite

  • Node.js
  • Node Package Manager

Development

  1. Clone the repository
git clone https://github.com/IEEE-SB-IPB/ieeesbipb.git
  1. Install dependencies
npm install
  1. Make a new branch
git branch <BRANCH_NAME>

example:

git branch dev-angga
  1. Change current branch
git checkout <BRANCH_NAME>
  1. Make changes

Make a description about yourself in /src/pages/member directory You're free to make the content in any template engine. But we recommend to do it in Markdown since it is very straightforward and easy to understand the basic syntax

  1. Stage the changes
git add <FILE_NAME>

# If you want to stage all changes,
git add .
  1. Commit
git commit -m "<YOUR_COMMIT_MESSAGE>"

Merging Changes