Changes between Version 3 and Version 4 of Csle2022/Agenda/githubadministration
- Timestamp:
- Nov 12, 2022, 8:52:17 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Csle2022/Agenda/githubadministration
v3 v4 161 161 162 162 === Push a branch to GitHub === 163 163 164 === Create a pull request === 165 164 166 === Merge a pull request === 167 165 168 === Get changes on your Github back your computer === 166 167 ==== Committing new changes to the repository (commit): ====168 169 Once you have added all the files to the staging area, you can commit the changes with a reference message using the “-m” flag as shown below.170 171 git commit -m “my first commit”172 173 174 175 176 177 169 178 170 ==== Checking out a repository ==== … … 184 176 185 177 186 ==== Adding file to the staging area: (add) ====187 188 `git add <filename>`189 190 Let’s say you want to add all the files in your project directory to the staging area. Execute the following command to do the same191 192 `git add --all`193 178 194 179 195 196 197 198 199