Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Cracking the Data Science Interview

You're reading from  Cracking the Data Science Interview

Product type Book
Published in Feb 2024
Publisher Packt
ISBN-13 9781805120506
Pages 404 pages
Edition 1st Edition
Languages
Authors (2):
Leondra R. Gonzalez Leondra R. Gonzalez
Profile icon Leondra R. Gonzalez
Aaren Stubberfield Aaren Stubberfield
Profile icon Aaren Stubberfield
View More author details

Table of Contents (21) Chapters

Preface Part 1: Breaking into the Data Science Field
Chapter 1: Exploring Today’s Modern Data Science Landscape Chapter 2: Finding a Job in Data Science Part 2: Manipulating and Managing Data
Chapter 3: Programming with Python Chapter 4: Visualizing Data and Data Storytelling Chapter 5: Querying Databases with SQL Chapter 6: Scripting with Shell and Bash Commands in Linux Chapter 7: Using Git for Version Control Part 3: Exploring Artificial Intelligence
Chapter 8: Mining Data with Probability and Statistics Chapter 9: Understanding Feature Engineering and Preparing Data for Modeling Chapter 10: Mastering Machine Learning Concepts Chapter 11: Building Networks with Deep Learning Chapter 12: Implementing Machine Learning Solutions with MLOps Part 4: Getting the Job
Chapter 13: Mastering the Interview Rounds Chapter 14: Negotiating Compensation Index Other Books You May Enjoy

Understanding common operations

Understanding the basic commands of Git is paramount for anyone working in the field of data science. In the previous section, we delved into how to set up a GitHub repository, either by cloning an existing repository or starting a new one from scratch. In this section, we will explore common Git operations that will help you manage your repositories more effectively.

So, let’s take a look at some operations:

  • Configuring Git (config): Git’s configuration settings can be found in the .gitconfig file, which is usually located in the user’s home directory. To modify these settings, use the git config command. Set your name and email address, which will be attached to each commit you make:
    git config --global user.name "Your Name"
    git config --global user.email "youremail@domain.com"

    Check your settings:

    git config --list
  • Checking the status (status): The git status command provides information about the...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}