Pratik Malidevelopnsolve.com·Sep 29, 2023Best GitHub Alternatives for Developers in 2023GitHub is a popular code hosting platform that offers a variety of features for developers, such as version control, issue tracking, and pull requests. However, GitHub is not the only option available. There are a number of other code hosting platfor...Discuss·16 likes·34 readsSoftware Engineering 101GitLab
Muhammad Ilham Hidayatblog.milhamh.com·Sep 10, 2023How To Set Multiple Git Identities With Git ConfigPrerequisite Git 2.13 macOS / Linux The first thing you should do after installing Git is to set your Git config identity (user name and email address). This step is important because every Git commit uses this information. $ git config --global...Discuss·1 likeGit
Alexandre Calaçablog.alexandrecalaca.com·Sep 5, 2023How to configure and use a dedicated SSH Key in a Bitbucket project?SSH SSH stands for "Secure Shell." It is a cryptographic network protocol used to securely access and manage network devices and servers over a potentially unsecured network. SSH provides a secure way to establish a remote connection to a system, all...Discuss·1 likeLinuxGit
Prahlad InalaforToolMate Blogprahladinala-1679763631201.hashnode.dev·Aug 11, 2023Bitbucket: A Comprehensive Guide to Code Hosting and CollaborationIntroduction to Bitbucket Bitbucket is a web-based hosting service for software development projects that use version control systems, such as Git and Mercurial. Created by Jesper Nøhr in 2008, Bitbucket was later acquired by Atlassian, the company b...DiscussGit
Kris Fkrisf.hashnode.dev·Jul 24, 2023How to whitelist a large number of IPs for an EC2Introduction You may occasionally come across services that needs access to your AWS infrastructure, or an EC2 machine. One example of this is allowing Bitbucket build machines to SSH into EC2 within AWS. A quick guide create a file called bitbucket...Discusscli
Veeresh Nagaviveereshnagavi.hashnode.dev·Jun 24, 2023Basics of Bitbucket CICD Pipelines. [Part-01]Table of Contents: What is Bitbucket? What is Bitbucket Pipelines? What are the Steps to set up Bitbucket Pipelines? How to Change Template in Bitbucket Pipelines? How to Add More Steps in Bitbucket Pipelines? How to Add Pipes to Bitbucket Pipe...Discuss·48 readsCI/CD
Md. Kaiyomkaiyom.hashnode.dev·Jun 23, 2023Git scenario cheat sheetMerge git merge new_feature Let's say, we want to copy all the code from new_feature branch into dev branch. In such a situation, first, we have to checkout in dev branch then we can execute the above command. The above command means bringing all...DiscussGit
sriyasriya.hashnode.dev·Jun 17, 2023Leveling Up Your Git Skills: Game-Inspired Guide to Git CommandsIn the world of software development, version control is like the ultimate power-up that allows developers to manage their codebase effectively. Git, a popular version control system, comes packed with powerful commands that can be a bit overwhelming...Discuss·7 likesGitHub
Munikanth munikanth.hashnode.dev·May 29, 2023GIT -Version Control systemIntroduction: Git is a distributed version control system that allows developers to track changes, collaborate efficiently, and manage software projects effectively. Git provides a seamless workflow, enabling teams to work on the same codebase simult...DiscussGitHub
Nikolay Neupokoevmikolasan.hashnode.dev·May 21, 2023Git survival cheat sheetFirst, introduce yourself git config --global user.name "Nikolay Neupokoev" git config --global user.email "mikolasan@twitter.com" git config --global core.editor vim # or nano git config --global init.defaultBranch master Create your local repo an...Discuss·1 likeGit