Filters

Hide filters
Platform
Content Type
Difficulty

Android & Kotlin · 4 Results

Contained in: Introduction to Version Control patterns Android & Kotlin
Multiple Domains

Lesson in Introduction to Version Control

Using GitHub for Version Control

…template or leave the default of None. This lesson hasn’t covered .gitignore, but it’s basically a collection of filename and filename wildcard patterns you want to keep out of the repository but that might be in your working directory. When your repository is for a codebase…
Multiple Domains

Lesson in Introduction to Version Control

Using Git for Development

…command, separated by a space. git add <name_of_file> <name_of_another_file> The add command also accepts wildcard patterns. To add all of the jpg files, for instance, type: git add *.jpg Finally, you can add everything: git add . If you decide to remove…
Multiple Domains

Lesson in Introduction to Version Control

Using Git for Development

…some other items in that context menu. Here is also where you’d add a tag to a commit. Select the “image of score pattern” commit and add a tag: “best-score”. Now that you’ve created a branch and made changes, the next section will show…
Multiple Domains

Lesson in Introduction to Version Control

Using Git in a Kodeco Bootcamp

…your entire thought process through your commit history, and provide targeted feedback on specific lines of code. This review process helps you identify patterns in your coding, learn best practices, and catch issues you might have missed. Additionally, the pull request creates a permanent record of the feedback and discussions…