Abdul Jabbar
About Abdul Jabbar
Abdul is a software engineer with an architect background and a passion for full-stack web development with eight years of professional experience in analysis, design, development, implementation, performance tuning, and implementation of business applications.
howto · 2025-03-13
How to Create Subclass From Superclass in Python
This tutorial demonstrates how to create a subclass from a superclass using the super() method in Python. Learn about inheritance, method overriding, and how to effectively utilize super() to enhance your programming skills. Perfect for beginners and experienced developers alike, this guide offers clear examples and explanations to help you master subclassing in Python.
howto · 2025-03-13
How to Split a String on New Line in Python
This tutorial demonstrates how to split a Python string on new line characters through the split method. Learn effective techniques such as using split(), splitlines(), and regular expressions to manage multi-line strings efficiently. Whether you're processing user input or handling data from files, mastering these methods will enhance your string manipulation skills in Python.
howto · 2025-03-13
How to Check Out a Remote Git Branch
This article demonstrates how to check out a remote Git branch using the git checkout command. Learn the essential steps, including fetching remote branches and verifying your current branch. Enhance your Git skills and streamline your workflow with this comprehensive guide. Ideal for both beginners and experienced developers looking to improve collaboration in Git.
howto · 2025-03-13
How to Remove Commit From a Branch in Git
This tutorial demonstrates how to remove commits from a branch in Git using various commands. Learn to use git reset, git revert, and git rebase effectively to manage your commit history, whether you're working solo or collaborating with a team. Discover the best practices for maintaining a clean and organized project history with our step-by-step guide.
howto · 2025-03-13
How to Pull All Branches in Git
This tutorial demonstrates how to pull all branches in Git using commands. Learn efficient methods to fetch and merge all branches from your remote repository, ensuring your local environment is always up to date. Discover essential Git commands and best practices for effective branch management.
howto · 2025-03-13
How to Undo Last Commit in Git
This tutorial demonstrates how to undo the last commit in Git using various commands. Learn the differences between git reset, git revert, and git commit --amend, and discover how to manage your Git history effectively. Whether you need to discard changes or keep a record of your work, this guide provides clear instructions and code examples to help you navigate your Git repository with confidence. Perfect for developers looking to enhance their Git skills.
howto · 2025-03-13
How to Update Submodule in Git
This tutorial demonstrates how to update submodules using multiple commands in Git. Learn effective methods to keep your submodules in sync, whether updating all at once or checking out specific commits. Enhance your Git skills and manage your projects more efficiently with these essential commands.
howto · 2025-03-13
How to Clone a Repository in Git
Learn how to clone a repository in Git with this comprehensive tutorial. Discover how to clone specific branches using the Git command line and streamline your development workflow. Perfect for beginners and experienced developers alike, this guide covers essential commands and techniques for effective version control.
howto · 2025-03-13
How to Remove Version Tracking From Folder in Git
Learn how to remove version tracking from a folder in Git using the command line. This tutorial covers effective methods like git rm --cached and modifying .gitignore for a clean repository. Perfect for developers looking to manage their version control efficiently.
howto · 2025-03-13
How to Recursively Add Files and Folders in Git
This tutorial demonstrates how to add files and folders in Git recursively through the git add command. Learn to manage your project files effectively by mastering the recursive addition of files and directories in Git. Discover tips on using .gitignore to exclude unnecessary files and streamline your workflow.
howto · 2025-03-13
How to Copy Commits From Another Branch in Git
This tutorial demonstrates how to copy or cherry-pick specific commits from one branch to another in Git. Learn effective techniques for managing your commit history, including cherry-picking single or multiple commits and using interactive rebase for greater control. Enhance your Git skills and streamline your development workflow with these essential commands.
howto · 2025-03-13
How to Update Local Branch From Remote in Git
This tutorial demonstrates how to update your local branch from the remote in Git using the command line. Learn various methods including fetch, merge, pull, and rebase to keep your projects synchronized and maintain a clean commit history. Perfect for both beginners and experienced developers, this guide provides clear code examples and detailed explanations for effective version control.
howto · 2025-03-13
How to Overwrite Master With Branch in Git
This tutorial demonstrates how to overwrite the master branch with another feature branch using the Git command line. Learn essential Git commands and techniques, including checkout, reset, and force push, to manage your branches effectively. Ideal for beginners and experienced developers alike, this guide ensures you can confidently handle branch management in your projects.
howto · 2025-03-13
Difference Between Two Commits in Git
This tutorial demonstrates the difference between two commits using the Git diff command. Learn how to effectively compare commits, specific files, and branches in Git to enhance your version control skills. Discover practical examples and explanations to streamline your coding workflow and improve collaboration.
howto · 2025-03-13
Git Repository Names
This tutorial demonstrates unique strategies for naming Git repositories to enhance visibility and usability. Learn best practices, methods for creating and renaming repositories, and practical examples to ensure your project stands out. Explore how descriptive and concise names can improve collaboration and discoverability in Git.
howto · 2025-03-13
How to Synchronize Branch With Master in Git
This tutorial demonstrates how to synchronize your Git branch with the master branch through the Git command line. Learn effective methods like merging, rebasing, and pulling to keep your codebase updated and conflict-free. Master Git synchronization for better collaboration and workflow efficiency.
howto · 2025-03-13
How to Git Push With SSH Key
This tutorial describes the process of pushing Git files with specific SSH keys to remote servers using the command line. Learn how to set up SSH keys, configure your Git repository, and push changes securely. Perfect for developers looking to streamline their workflow and enhance security.
howto · 2025-03-13
How to Determine the Current Branch in Git
This tutorial explains how to determine the current branch in Git using various commands. Learn to use git status, git branch, git rev-parse, and git config effectively. Enhance your Git skills and streamline your development workflow with this comprehensive guide.
howto · 2025-03-11
How to Convert Date to Datetime in Python
This tutorial demonstrates how to convert date into datetime in Python using date and datetime Python objects. Learn three effective methods including using the combine function, replace method, and strptime function to handle date and datetime conversions seamlessly. Perfect for data analysis, web development, and more.
howto · 2025-03-11
Binary Numbers Representation in Python
This tutorial explores binary numbers representation in Python, demonstrating how to sum binary numbers using built-in functions and manipulate data with bitwise operators. Learn essential techniques to enhance your coding skills and effectively manage binary data in Python.
howto · 2025-03-11
How to Find Maximum and Minimum Value Using Lambda Expression in Python
This tutorial demonstrates how to find the maximum and minimum values in a list using lambda expressions in Python. Learn to use the max and min functions effectively with the key property for clearer, more concise code. Perfect for beginners and experienced programmers alike, this guide enhances your Python skills with practical examples.
howto · 2025-03-11
Class Property in Python
Explore the concept of class properties in Python through this detailed tutorial. Learn how to use getters and setters to manage attribute access and maintain data integrity. Discover how to create computed properties and enhance your coding practices. Perfect for both beginners and experienced programmers looking to improve their skills.
howto · 2025-03-11
How to Examine Items in a Python Queue
This tutorial demonstrates how to examine items in a Python queue using the Queue and deque functions. Learn effective techniques for managing data structures in Python, including accessing and peeking at items in queues. Enhance your programming skills with practical examples and clear explanations.
howto · 2025-03-11
How to Delete a Git Branch Locally and Remotely
This tutorial demonstrates how to delete local and remote branches in Git using various commands. Learn the essential Git commands to keep your repository organized and clutter-free. Discover the steps to safely remove branches while ensuring you don’t lose any important work.
howto · 2025-03-11
How to Set Upstream in Git
This article provides a comprehensive tutorial on how to set upstream branches in Git. Learn the essential commands and techniques to manage your local and remote branches effectively. Improve your version control skills and streamline your workflow with our easy-to-follow guide. Whether you are a beginner or an experienced developer, this guide will enhance your understanding of Git upstream commands.
howto · 2025-03-11
How to Merge and Squash in Git
This tutorial demonstrates how to merge and squash commits in Git. Learn essential techniques for maintaining a clean commit history, simplifying your workflow, and enhancing collaboration with effective Git practices. Discover step-by-step instructions and practical examples to master merging and squashing in Git.
howto · 2025-03-11
How to Fetch Remote Branch in Git
This tutorial demonstrates how to fetch a remote branch in Git using different commands. Learn essential Git commands like fetch, pull, and checkout to manage remote branches effectively. Enhance your collaboration skills and streamline your workflow by mastering these techniques.
howto · 2025-03-11
How to Discard Changes in Git
This comprehensive tutorial explains how to discard and undo changes in Git using various commands. Learn to manage untracked files, modified changes, and staged changes effectively. By mastering these techniques, you can maintain a clean codebase and focus on your development work without fear of losing important changes. Perfect for both beginners and experienced developers, this guide will enhance your Git skills.
howto · 2025-03-11
How to Push Local Branch to the Remote Branch in Git
This tutorial demonstrates how to push a local branch to a remote branch in Git. Learn essential commands and techniques to manage your Git workflow effectively. Understand how to handle merge conflicts and push to different branches, ensuring your code is always backed up and accessible.
howto · 2025-03-11
How to Undo rm in Git
This tutorial demonstrates how to revert the command git rm using Git commands. Learn effective methods to recover deleted files before and after committing changes. Explore git restore, git checkout, and git reflog to ensure you can navigate accidental deletions in your Git repository confidently.
howto · 2025-03-11
How to Compare Local and Remote Branches in Git
This tutorial demonstrates how to compare local Git branches with their remote counterparts using various commands. Learn effective techniques like git fetch, git diff, git status, and git log to streamline your version control workflow. Enhance your understanding of Git and improve collaboration with these essential commands.
howto · 2025-03-11
How to Remove Remote Origin in Git
This tutorial demonstrates how to remove remote origin from a Git repository using the command line. Learn the steps to manage your Git remotes effectively and maintain a clean configuration. Whether you are changing your remote setup or simply tidying up, this guide provides clear instructions to help you navigate the process with ease.
howto · 2025-03-11
How to Undo Checkout in Git
This tutorial demonstrates how to undo the checkout in Git, covering essential methods such as switching back to the previous branch, resetting changes, and using Git stash. Learn practical commands and tips to manage your Git workflow efficiently. Whether you're a novice or an experienced developer, this guide will enhance your understanding of Git and improve your productivity.
howto · 2025-03-11
Head in Git
This tutorial explores the concept of HEAD in Git, explaining its significance, how to view the current HEAD position, move to different commits, and create new branches. Perfect for beginners and experienced developers alike, this guide will help you master Git and improve your version control skills.
howto · 2025-03-11
How to Unstage a File in Git
This tutorial demonstrates how to unstage files easily on Git using various Git commands. Learn effective methods like git reset, git restore, and git rm to manage your staging area effectively. Whether you're a beginner or an experienced user, this guide will help streamline your Git workflow and maintain a clean commit history.
howto · 2025-03-11
How to Center Image in Markdown
This tutorial demonstrates how to align an image centrally in Markdown. Learn various methods including using HTML tags, CSS styling, and GitHub Flavored Markdown techniques to enhance your documents. Perfect for developers and content creators looking to improve their Markdown skills.
howto · 2025-03-11
How to Add Multiple Files in Git
This tutorial demonstrates how to add multiple files in our repository using various commands in Git. Learn the most effective methods for staging files, including using the command line, interactive staging, and GUI tools. Enhance your Git skills and streamline your workflow with our comprehensive guide.
howto · 2025-03-11
How to Untrack Folder in Git
This comprehensive tutorial explains how to untrack a folder in Git using various commands. Learn effective methods like `git rm --cached`, modifying `.gitignore`, and using `git update-index`. Perfect for developers looking to manage their Git repositories efficiently.
howto · 2025-03-11
How to Undo Git Reset
This comprehensive guide explores how to undo a Git reset using command line methods. Learn to recover lost commits and changes through practical examples and detailed explanations. Whether you're dealing with a soft, mixed, or hard reset, find effective solutions to restore your work in Git.
howto · 2025-03-11
How to Push Username in Git
This tutorial demonstrates how to push your username in Git using the command line. Learn how to configure your username and email, stage, commit, and push changes effectively. Enhance your Git workflow and ensure your contributions are accurately attributed in collaborative projects.
howto · 2025-03-11
How to Make Reports in Git
This tutorial provides a step-by-step guide on how to create reports in Git using essential commands. Learn how to use git log, git diff, git shortlog, and git tag to generate insightful reports that summarize your work and contributions. Enhance your project documentation and improve team communication with these practical techniques.
howto · 2025-03-11
How to Clear Stash in Git
This tutorial demonstrates how to clear stashes in Git using the command line. Learn various methods to manage your stashes effectively, whether you want to clear all stashes or drop specific ones. Keep your Git environment organized and efficient with our step-by-step guide.
howto · 2025-03-11
How to Show Files in Git Commit
This tutorial demonstrates how to list files in a Git commit. Learn various methods including using git show, git diff, and git log to effectively manage your version control. Enhance your coding skills and track changes with confidence. Whether you're collaborating on projects or managing your own code, this guide provides the insights you need to navigate Git commits seamlessly.
howto · 2025-03-11
How to Merge Repositories in Git
Learn how to merge separate repositories into a master repository using Git command line. This step-by-step tutorial covers various methods for merging repositories, from direct merges to organized subdirectories. Gain essential skills to streamline your development process and maintain a clean codebase. Perfect for developers looking to consolidate projects or collaborate effectively.
howto · 2025-03-11
How to Push to Specific Branch in Git
This tutorial demonstrates how to push your local branch to a specific remote branch in Git. Learn essential commands and best practices for managing branches effectively, ensuring a smooth workflow in your projects. Whether you're a beginner or looking to sharpen your Git skills, this guide will help you navigate the process with confidence.
howto · 2025-03-11
How to Delete Commit From the Remote Repository in Git
This tutorial demonstrates how to delete a commit from the remote repository through the Git command line. Learn effective methods, including resetting the latest commit, reverting specific commits, and using interactive rebase for multiple commits. Enhance your Git skills and maintain a clean project history with these practical techniques.
howto · 2025-03-11
How to Copy File From Another Branch in Git
This tutorial demonstrates how to copy files from one branch into another branch in Git using the command line. Explore various methods like git checkout, git restore, and git cherry-pick to effectively manage your code changes and enhance your Git workflow. Perfect for developers looking to streamline their project management.
howto · 2025-03-11
How to Uninitialize Repository in Git
This tutorial demonstrates how to uninitialize a Git repository through the command line. Learn the steps to remove Git tracking, explore various methods, and understand the implications of uninitializing your project. Whether you prefer command line or GUI tools, this guide provides clear instructions to help you manage your Git repositories effectively.
howto · 2025-03-11
How to Merge Develop Into Feature in Git
This tutorial demonstrates how to merge develop into a feature branch in Git using the command line. Learn step-by-step instructions to create a feature branch from develop and how to merge it back efficiently. Enhance your Git skills with this comprehensive guide.
howto · 2025-03-11
How to Rename Local Branch in Git
This tutorial demonstrates how to rename a local branch in Git using different commands. Learn effective methods to manage your branches, ensuring clarity and organization in your projects. Explore command-line techniques and GUI tools for seamless branch renaming.
howto · 2025-03-11
How to Check Git Version
This tutorial demonstrates how to check Git version using the command line. Learn simple methods to verify your Git installation, whether through terminal commands, within a repository, or via GUI clients. Keep your Git up to date for a smoother development experience.
howto · 2025-03-11
How to Install Git in Cygwin
This tutorial demonstrates how to install Git in Cygwin, providing a step-by-step guide to help you set up version control on your Windows machine. Learn how to navigate the installation process, select the right packages, and verify your Git setup seamlessly. Whether you're a beginner or an experienced developer, this guide will enhance your coding experience.
howto · 2025-03-11
Global Git Config File Location
This tutorial explores configuring Git globally via the command line and reveals the locations of gitconfig files. Learn how to set your user name and email, edit the global Git config file, and verify your settings. Streamline your Git workflow with these essential tips and tricks.
howto · 2025-03-11
Git Stash Needs Merge
This tutorial demonstrates effective methods for resolving conflicts that occur when applying stashed changes in Git. Learn how to use commands like git stash apply, git stash pop, and create new branches to handle the "Git stash needs merge" scenario efficiently.
howto · 2025-03-11
How to Git Refresh Remote Branches
This tutorial demonstrates refreshing remote branches in Git using the command line. Learn how to use git fetch, git pull, and other methods to keep your branches updated effectively. Discover best practices for maintaining synchronization with your remote repository, ensuring smooth collaboration with your team.
howto · 2025-03-11
How to Update Git on Mac
This tutorial demonstrates how to update Git on Mac using Homebrew. Learn the step-by-step process to ensure your Git installation is current, enhancing your development experience with the latest features and security patches. Follow our easy guide to keep your version control system up to date.
howto · 2025-03-11
How to Push Hangs in Git
This tutorial demonstrates how to troubleshoot hanging issues during a git push in Git. Learn effective strategies such as optimizing your repository, using Git LFS for large files, and checking network connectivity to ensure smooth pushes. Whether you're a beginner or an experienced developer, this guide provides practical solutions to enhance your Git experience.
howto · 2025-03-11
Git Merge Dry Run
This tutorial on Git merge dry run explains how to safely merge branches using Git's dry run command. Learn to preview changes without applying them, identify conflicts, and streamline your workflow. Enhance your Git skills and ensure smoother integrations with our comprehensive guide.
howto · 2025-03-11
How to Push Origin Head in Git
This tutorial provides a step-by-step guide on how to push origin head in Git. Learn various methods to push your branch to a remote repository using essential Git commands. Whether you're a beginner or an experienced developer, this article will help you master the process of synchronizing your local changes with the remote repository, ensuring effective collaboration and version control. Discover best practices and tips for using Git effectively.
howto · 2025-03-11
How to Add SSH in Git Remote
This tutorial demonstrates how to add SSH in Git remote, including methods for using both default and custom SSH ports. Learn to set up secure connections and verify your SSH configuration for seamless repository management. Perfect for developers seeking enhanced security in their Git workflows.
howto · 2025-03-11
Git Unmerged Files
This comprehensive tutorial on Git unmerged files guides you through the process of resolving conflicts in your code. Learn how to identify unmerged files, manually resolve conflicts, and utilize Git's mergetool for a more visual approach. Perfect for developers looking to enhance their Git skills and maintain a smooth workflow in collaborative projects.
howto · 2025-03-11
How to Get Current Commit in Git
This tutorial describes the process of retrieving the hash value for the current commit using Git commands. Learn how to use commands like git rev-parse, git log, and git show to efficiently access the current commit hash in your Git repository. Whether you're a beginner or an experienced developer, this guide provides clear instructions and examples to help you streamline your version control workflow. Discover the best practices for managing your code and collaborating with others effectively.
howto · 2025-03-04
How to Read Specific Column From .dat File in Python
This tutorial demonstrates how to extract specific columns from a .dat file in Python. Learn efficient methods using NumPy, Pandas, and regular expressions to streamline your data analysis tasks. Whether you're a beginner or an experienced programmer, this guide will help you navigate through reading .dat files with ease.
howto · 2025-03-04
How to Uninstall Git in Windows
This tutorial demonstrates how to uninstall Git on Windows and guide you through the reinstallation process. Learn the best methods to manage your Git installation effectively, ensuring a smooth development experience. Follow our step-by-step instructions to troubleshoot issues and keep your Git version up to date.
howto · 2025-02-26
Log Graph in Git
This tutorial on log graph in Git demonstrates how to graphically view the history of commits using the git log command. Learn effective methods to visualize your commit history, including command-line options and GUI tools. Enhance your Git experience and improve collaboration with clear insights into your project's development.
howto · 2025-02-26
How to Change the Git Editor for Commits
Learn how to change the default Git editor for commits using the terminal or by editing the .gitconfig file. This tutorial provides step-by-step instructions and code examples for a smoother Git experience. Customize your workflow today and enhance your coding efficiency.
howto · 2024-02-15
How to Globally Ignore Files in Git
This tutorial demonstrates how to ignore files globally using various commands.
howto · 2024-02-15
Git Icons
This tutorial demonstrates the descriptions and usage of icons in general and in Git.
howto · 2024-02-02
How to Call a Class in Python
This tutorial demonstrates how to call an instance of a class in Python.
howto · 2024-02-02
How to Create Random Seed Function in Python
This tutorial demonstrates how does the random function work in Python with seed and without seed
howto · 2024-02-02
How to Delete Element From List in Python
This tutorial demonstrates how to remove an element from a list by value if it exists in the list
howto · 2024-02-02
How to Find NTH Root of X Value in Python
This tutorial demonstrates how to find the nth root of x value in Python.
howto · 2024-02-02
How to Undo Commit in Git
This tutorial demonstrates to undo the most recent local commit in git using different commands
howto · 2024-02-02
How to Force Git Pull to Overwrite Local Files
This tutorial demonstrates how to force pull the repository to overwrite local files using Git commands.
howto · 2024-02-02
How to Reset HEAD in Git
This tutorial demonstrates how to do the reset HEAD for restoring last commit in Git.
howto · 2024-02-02
How to Update Branch From Master in Git
This tutorial demonstrates how to update Git branch from master branch using various commands.
howto · 2024-02-02
How to Reattach Head in Git
This tutorial demonstrates how to head detached in Git using various commands.
howto · 2024-02-02
How to Cherry-Pick a Commit in Git
This tutorial demonstrates Cherry-picking a commit in Git using commands.
howto · 2024-02-02
How to Remove Committed Files in Git
This tutorial demonstrates how to remove already commit files from Git using different command lines.
howto · 2024-02-02
How to Force Pull Overwrite in Git
This tutorial demonstrates how to force pull everything on every pull using various commands in Git
howto · 2024-02-02
How to Reset and Restore in Git
This tutorial demonstrates the definition of Git Restore Command and the major difference between the git restore and git reset commands in Git.
howto · 2024-02-02
How to Rename Branch in Git
This tutorial demonstrates how to rename a local and remote branch in Git using different commands.
howto · 2024-02-02
How to Move Commit to Another Branch in Git
This tutorial demonstrates how to move recent commits to a new or already existing branches using various commands in git
howto · 2024-02-02
How to List All Remote Branches in Git
This tutorial demonstrates how to list all remote branches using different command in Git.
howto · 2024-02-02
How to Delete Git Local Repository
This tutorial demonstrates how to delete a local repository using various commands in Git.
howto · 2024-02-02
How to Revert Merge Commit in Git
This tutorial demonstrates to revert a commit that is already pushed to a remote branch using a command line in Git
howto · 2024-02-02
How to Merge With Force Overwrite in Git
This tutorial demonstrates how to merge in Git with force overwrite using various commands.
howto · 2024-02-02
How to Stash One File in Git
This tutorial demonstrates stashing one file out of many files that have been changed with Git through various commands.
howto · 2024-02-02
How to Checkout Tag in Git
This tutorial demonstrates how to checkout latest tag in git using various commands.
howto · 2024-02-02
How to View Git Configuration
This tutorial demonstrates how to view Git configuration through various Git commands.
howto · 2024-02-02
How to Recover Stash in Git
This tutorial demonstrates recovering stash through Git command line.
howto · 2024-02-02
How to Add Remote Branch in Git
This tutorial demonstrates how to add remote branch in Git using command line.
howto · 2024-02-02
How to Cherry-Pick Merge Commit in Git
This tutorial demonstrates how to cherry-pick merge commit through the Git command line.
howto · 2024-02-02
How to Create Pull Request From Command Line in Git
This tutorial demonstrates creating pull requests through the command line in Git.
howto · 2024-02-02
How to Get the Latest Version of Code in Git
This tutorial demonstrates how to get the latest version of code in Git through the command line.
howto · 2024-02-02
How to Remove Commit From History in Git
This tutorial demonstrates how to remove commits from history in Git.
howto · 2024-02-02
How to Track Command History in Git
This tutorial demonstrates how to track the history of commands through the Git command line.
howto · 2024-02-02
How to Show Remote Tracking Branches in Git
This tutorial demonstrates tracking remote branches through the Git command line.
howto · 2024-02-02
How to Enable Git Tab Autocomplete
This tutorial demonstrates how to enable the git tab to autocomplete.
howto · 2024-02-02
How to Open Git Bash on Mac
This tutorial demonstrates the process of opening Git Bash on Mac after installation.
howto · 2024-02-02
How to Revert Commit Local in Git
This tutorial demonstrates the process of reverting the commit locally done using Git command line.
howto · 2024-02-02
How to List Commits in Git
This tutorial demonstrates the process of listing commits through the Git command line.
howto · 2024-02-02
How to Squash All Commits in Git
This tutorial demonstrates the process of squashing multiple Git commits into one using command line.
howto · 2023-01-30
The gitignore File in Git
This tutorial demonstrates how to ignore files in git using .gitignore.
howto · 2023-01-30
gitkeep and gitignore in Git
This tutorial demonstrates the difference between the .gitkeep and the .gitignore using Git Commands.
howto · 2023-01-03
Multiple Commits Using Cherry-Pick in Git
This tutorial demonstrates how to do multiple commits using cherry-picking in Git.
howto · 2022-11-23
Git Pull VS Merge
This tutorial describes the purpose of pull and merge commands of Git.
howto · 2022-11-23
Git Grep
This tutorial demonstrates the concept of the command git grep in Git.
howto · 2022-11-23
Git Checkout VS Pull
This tutorial describes the comparison between pull and checkout commands of Git.
howto · 2022-11-21
Git Fork vs Branch
This tutorial demonstrates the difference between forking and branching in Git.
howto · 2022-08-31
GitLab CI Variables
This tutorial demonstrates the use of the GitLab CI variables keyword in .GitLab-ci.yml.
howto · 2022-07-12
Difference Between Git Switch and Checkout
This tutorial demonstrates the difference between the git switch and git checkout commands.
howto · 2022-02-17
Difference Between Branches in Git
This tutorial demonstrates comparing branches in Git using git diff commands.