top of page

Search Results

5392 éléments trouvés pour «  »

  • Reading: Version Control Git terminology

    This resource will act as a point of reference for the various commands to be used throughout this course. Below you will find the official git commands from GitHub.

  • Quiz: Introduction to version control

    Duration: 10 minutes Total points: 4 Read Edcent Honor Code Click Complete to take the quiz.

  • Survey: Quiz: Introduction to version control

    Duration: 10 minutes Total points: 4 Read Edcent Honor Code Click Complete to take the quiz.

  • Reading: Additional Resources

    About Version Control https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control List of Version Control Software https://en.wikipedia.org/wiki/List_of_version-control_software The benefits of a distributed version control system https://about.gitlab.com/topics/version-control/benefits-distributed-version-control-system/ What is Cloning? https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository

  • Survey: Quiz: Unix Commands

    Duration: 15 minutes Total points: 5 Read Edcent Honor Code Click Complete to take the quiz.

  • Reading: Installing Git on Mac

    Git works on all operating system platforms such as Windows, Mac, and Linux. On Mac or Linux, in some cases, it is installed by default. The majority of users will use Git via the command line as its syntax is very easy to understand and follow. Git also works well in development environments and integrates into IDEs and other GUI offerings. Macs tend to have git installed by default, so before diving into the installation we can run a git version command to check if git is already installed. If the command returns a git version, then git is already installed. If it returns "command not found", git needs to be installed. Install with Xcode Install the latest version of Xcode for your Mac by downloading it from the Apple Store or going to the official website - https://developer.apple.com/xcode/ Install Git from Homebrew Homebrew is a popular package manager for Macs. It’s easy to use and makes it simple to install new packages such as git. First, you will need to install Homebrew on your machine. Go to the Homebrew website at https://brew.sh/ and follow the install instructions for Mac. Once Homebrew is installed, open a terminal window and then type the command brew install git Once installed run the git version command to verify the installation is complete.

  • Reading: Connecting to GitHub via HTTPS

    When using Github via the Coursera platform, it is required to authenticate using a Personal Access Token over HTTPS. A Personal Access Token is a special password that you use instead of your actual account password. When you're finished using the token, you can revoke it so that it can no longer be used. It is also possible to set an expiry time for the token. This helps to keep your account secure. Generate a Personal Access Token We now need to set up our Personal Access Token. Step 1: Log in to Github Step 2: Click on the profile icon in the top right of the screen and select Settings. Step 3: On the Settings screen, on the left-hand side click Developer Settings. Step 4: On the Developer Settings screen, click Personal Access Tokens and then click Generate Token. Step 5: On the New Personal Access Token page, enter a token name and an expiry time. If you wish to manually revoke the token, set the expiry time to No Expiration. Step 6: Under scopes, select repo. Step 8: The token is now generated. Make sure to copy and keep note of the token as it will be hidden when you leave the page. This token can now be used when connecting to a repository over HTTPS. Note: If you lose the token, you can delete the old token and create a new one. Accessing Repositories When accessing a repository and using HTTPS authentication, make sure to always use the HTTPS address of the repository.

bottom of page