6 Matching Annotations
  1. Oct 2022
    1. This is a reference list of the most commonly used Git commands. (You might consider bookmarking this handy page.) Try to familiarize yourself with the commands so that you can eventually remember them all: Commands related to a remote repository: git clone git@github.com:USER-NAME/REPOSITORY-NAME.git git push or git push origin main (Both accomplish the same goal in this context) Commands related to the workflow: git add . git commit -m "A message describing what you have done to make this snapshot different" Commands related to checking status or log history git status git log The basic Git syntax is program | action | destination. For example, git add . is read as git | add | ., where the period represents everything in the current directory; git commit -m "message" is read as git | commit -m | "message"; and git status is read as git | status | (no destination).

      Git CheatSheet

    1. The basic Git workflow goes something like this: You modify files in your working tree. You selectively stage just those changes you want to be part of your next commit, which adds only those changes to the staging area. You do a commit, which takes the files as they are in the staging area and stores that snapshot permanently to your Git directory.

      To understand the sections of a Git Project, it's a better idea to get a grip on the Git workflow all together and work on a project to solidify this knowledge.

    2. Modified means that you have changed the file but have not committed it to your database yet. Staged means that you have marked a modified file in its current version to go into your next commit snapshot. Committed means that the data is safely stored in your local database.

      The three main states of a file using Git.

    1.  whenever you have the entire history of the project in a single place, you risk losing everything.

      The main issue between local and centralized version control systems.

  2. Aug 2022
    1. The Golden Circle. The outer ring of the circlerepresents what your company does--the product or service you offer, the industry you operate in, and soon. The middle ring is how your company does what it does, which includes the ways you differentiateyourself from all the other companies who have the same WHAT as you. At the center of the golden circle,you have your company’s WHY--the reason for your HOW and WHY.

      The reason for your HOW and WHAT

    1. For a marketer, this could mean creating helpful content and experiences that demonstrate your knowledge.Sales reps, on the other hand, you need to make customers want to engage in conversation and see you as aresource, so you could attract prospects and customers by making yourself available for meetings, calls, or livechat in areas they’re likely to have the most product questions. And services? Knowledge docs and chatbotsmake information easy to find for people who are looking for it.

      Example of how the 3 Players in Growth Teams use the Inboud Methodology during the Attract Stage.