Repository for DTU's 2024 Loads, Aerodynamics and Control of Wind Turbines (46320).
The code is not completely polished.
- Make simple functions that only do 1 thing
- Make a branch for each feature
- Commit often (don't commit 100 files)
- Write good commit messages
- Try not to work on the same file
- Create/Delete/Change files
- "Add"/"Stage" ONLY the changes that you want
- "Commit" changes with a decriptive message (This is like a personal checkpoint. Try to commit often)
When you are ready to push your changes to GitHub:
- "..."/"Pull, Push"/"Pull from.."/"main" (Maybe try and do this often)
- Create Pull Request from your branch to main
- ????
- Navigate to the folder you would like the repository to be cloned to.
- Press "Ctrl" + "~"
- Selcect "Git Bash" terminal on the bottom left (next to "+") and type type:
git bash https://github.com/SpyrosAcheimastos/LAC.git
- Navigate inside the folder with "File/Open folder..." to get into the actual folder and start working.
- Open again the "Git Bash" terminal and type your info (quotes are needed):
git config user.name "Spyros Acheimastos"
git config user.email "[email protected]"
- Press on "main" at the bottom left
- Select "Create New Branch"
- Name it for example "branch_feature"