40 Another Rebasing example
Command $ vim all_checks.py Modify code Add the function check_no_network (...) import socket (...) def check_root_full(): """Returns True if the root partition is full, False otherwise.""" ...
Command $ vim all_checks.py Modify code Add the function check_no_network (...) import socket (...) def check_root_full(): """Returns True if the root partition is full, False otherwise.""" ...
Study guide: Conflict resolution In Git, merge conflicts, or conflicts that occur when merged branches have competing commits, are not uncommon when working with a team of developers or when workin...
Terms and definitions Application Programming Interface (API) key: This is an authentication token that calls an API, which is then called to identify the person, programmer, or program trying to a...
Command $ git clone https://github.com/artwalker/rearrange.git Code output: Cloning into 'rearrange'... remote: Enumerating objects: 9, done. remote: Counting objects: 100% (9/9), done. remote...
Command $ vim README.md Modify code: Rearrange ========= This module is used for rearranging names. Turns "LastName,FirstName" into "Firstname LastName" # Example Calling `rearrange_name("Tur...
Command $ git rebase -i master Code output: pick 736d754 Add a simple README file pick 01231b0 Add more information to the README (...) Modify file: pick 736d754 Add a simple README file squash...
GitHub is an open-source platform for collaboration and knowledge sharing, allowing users to explore code created by others. This study guide will provide you with pointers on effectively using the...
Command $ vim README.md Code output: Rearrange ========= This module is used for rearranging names. Turns "LastName, FirstName" into "FirstName LastName". ## Examples * Calling `rearrange_nam...
More Information on Code Reviews Consistent coding standards are essential for large-scale projects, ensuring readability and maintainability. Google’s style guides stand as prominent examples of ...
Command $ cd health-checks/ $ vim README.md Modify file # health-checks This repo will be populated with lots of fancy checks. Currently the main script is health_checks.py This script will p...