April 03 2026 - Shawwal 17 1447

Hi, I’m Abdullah

Full Stack Developer | Crafting Solutions Since 2018

I’m a passionate full stack developer specializing in Rails, PHP, JavaScript, and Rails API. Working on Linux Debian, I build robust, scalable applications. I completed my Ausbildung and have been in this field since 2018, delivering code that solves real-world problems.

مرحباً، أنا عبدالله

مطور ويب كامل | أصنع الحلول منذ 2018

أنا مطور ويب شغوف، متخصص في Rails وPHP وJavaScript وRails API. أعمل على Linux Debian لبناء تطبيقات قوية وقابلة للتطوير. أكملت تدريبي المهني (Ausbildung) وأعمل في هذا المجال منذ 2018، مقدمًا حلولاً برمجية لمشاكل حقيقية.

Send
written by: abdullah@abdullah-salloum.de
GitHub and Git

About GitHub

GitHub is a cloud-based platform where you can store, share, and work together with others to write code.

Storing your code in a "repository" on GitHub allows you to:

  • Showcase or share your work.
  • Track and manage changes to your code over time.
  • Let others review your code, and make suggestions to improve it.
  • Collaborate on a shared project, without worrying that your changes will impact the work of your collaborators before you're ready to integrate them.
Collaborative working, one of GitHub’s fundamental features, is made possible by the open-source software, Git, upon which GitHub is built.

About Git

Git is a version control system that intelligently tracks changes in files. Git is particularly useful when you and a group of people are all making changes to the same files at the same time.

Typically, to do this in a Git-based workflow, you would:

  • Create a branch off from the main copy of files that you (and your collaborators) are working on.
  • Make edits to the files independently and safely on your own personal branch.
  • Let Git intelligently merge your specific changes back into the main copy of files, so that your changes don't impact other people's updates.
  • Let Git keep track of your and other people's changes, so you all stay working on the most up-to-date version of the project.
To try using Git yourself, see Getting started with Git.

How do Git and GitHub work together?

When you upload files to GitHub, you'll store them in a "Git repository." This means that when you make changes (or "commits") to your files in GitHub, Git will automatically start to track and manage your changes.

There are plenty of Git-related actions that you can complete on GitHub directly in your browser, such as creating a Git repository, creating branches, and uploading and editing files.

However, most people work on their files locally (on their own computer), then continually sync these local changes—and all the related Git data—with the central "remote" repository on GitHub. There are plenty of tools that you can use to do this, such as GitHub Desktop.

Once you start to collaborate with others and all need to work on the same repository at the same time, you’ll continually:

  • Pull all the latest changes made by your collaborators from the remote repository on GitHub.
  • Push back your own changes to the same remote repository on GitHub.
Git figures out how to intelligently merge this flow of changes, and GitHub helps you manage the flow through features such as "pull requests."


Source:  About GitHub and Git