© 2023 Hashnode
#github
Creating reusable GitHub Actions is an easy way to automate away everyday tasks in CI/CD. However, actions are typically implemented in TypeScript or JavaScript, and getting started in another languag…
Git is a distributed version control system that allows developers and operations teams to collaborate and keep track of the changes made on a project. GIT as a DevOps tool empowers collaboration and …
Android is a popular mobile operating system with a large community of developers and a vast collection of libraries and tools for building mobile applications. In this blog post, we will guide you th…
How has remote work changed the vast majority of software companies? Code reviews have been treated more secondary...allowing more bugs to ship, devs losing their personal connection to others, and code shipping slower than ever.
Prerequisite You must have an AWS account and basic knowledge of AWS You should have an understanding of Python and Django framework You must be familiar with Linux, Docker and Jenkins You must kn…
This is aimed at guiding my mentorship team, but anyone is welcome to join **This article is a simple guide and you can find more descriptive guidelines on getting started here** Step 1: Get Started A…
Disclaimer ⚠️ The last thing I ever want to do is to steal anybody's fire. If hustling is a term of endearment for you, if it gets you going in the morning when you get out of bed then, by all means, …
Introduction When dealing with a GitHub repository using commands, you will frequently need to identify yourself with your username and password. Instead, you can use an SSH key to authenticate yourse…
1.What is difference Between Main Branch and Master Branch?? Actually, there is no difference between main and master in Git. ‘Master’ is just the name of the default branch for all the existing repositories. Whereas,if you create a new rep…
To Initialise a repository: Creates an empty repository git init To view the changes done in the project: This command displays tracked, untracked and changes done in the project which right now doesn't exist in the project history. git…