Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
weatherbox:team_nova:git_and_github [2016/01/26 05:18] khamamura [Questions] |
weatherbox:team_nova:git_and_github [2021/09/19 21:59] (current) |
||
---|---|---|---|
Line 11: | Line 11: | ||
3. **What is git?** | 3. **What is git?** | ||
- | Git is a command line prompt that allow you to interface github and operate version control. It is distributed so that connectivity doesn't block work and easy so learning commands can happen progressively. | + | Git is a command line prompt that allow you to interface GitHub and operate version control. It is distributed so that connectivity doesn't block work and easy so learning commands can happen progressively. |
4. **What is Github?** | 4. **What is Github?** | ||
+ | |||
+ | GitHub is a code sharing and publishing service that is a social networking site for programmers. GitHub is a Git repository hosting service. | ||
5. **How are git and Github different from each other?** | 5. **How are git and Github different from each other?** | ||
+ | |||
+ | Git is an open source project that offers a version control system and also manages and stores revisions of projects. GitHub is the repository hosting service. | ||
6. **Why do you think git or any other version control system can be useful?** | 6. **Why do you think git or any other version control system can be useful?** | ||
+ | |||
+ | Git and other version control systems can be useful when collaborating on work with other users, comparing files, reverting files back to a previous state, and observe the last modifications that could be potentially causing a problem. | ||
+ | ----- | ||
+ | |||
+ | ======Notes====== | ||
+ | |||
+ | Github | ||
+ | |||
+ | - Made a new repository for Team Nova | ||
+ | |||
+ | - Can make edits straight on page or on wiliki | ||
+ | |||
+ | - To edit master, pull onto individual branch, make edits on branch, then create pull request and select merge | ||
+ | |||
+ | - Or, pull link onto wiliki, vi and edit the code, git commit -m "comment", git push "link" [branch to push to] |