Note: If you already have Git installed on your machine, it's best to update to thelatest versionavailable. Follow the instructions in our article onhow to update Giton Windows, macOS, or Linux. After installing
What is cherry picking in Git? Learn how to cherry pick a commit, when to merge rather than cherry pick, and see an example of cherry picking using the GitKraken Git GUI.
Next, you want to create an .npmignore file. This looks similar to .gitignore and what it does is it omits files you specified and doesn’t add them to your package. Finally, you need to create the user. If you don’t have a user in NPM already, you need to create one. Don’t...
Learn how to create a GitHub pull request in the command line and the GitKraken Git GUI. See the pull request template in GitKraken an learn how to make a draft PR.
Apart from these prompts, you might create a template to include the material from workshops or online courses. Whatever it is, it’s worth mentioning in the introduction. Documenting Tech Stack in Your README.md File It’s important to document the programming languages used, tools, librari...
Start a conversation with ChatGPT when a prompt is posted in a particular Slack channel Try it Slack, ChatGPT (OpenAI) Slack + ChatGPT (OpenAI) More details Another workflow involves using AI to create a formatted daily summary of all the previous day's activities in Slack. This includes ...
Create a Bitbucket repo First I will create a Bitbucket repository: Create a local repository, make changes, push to Bitbucket I will create a new folder for my repository: mkdir bitbucket-tutorial cd bitbucket-tutorial/ I will initialise the git repository and add the remote for...
Sometimes, when you create a local branch, you might push the remote repository changes without adding the upstream tag. For example, git push origin foo It will create the remote branch without tracking. Meaning, when someone pushes any change to the branch foo in the remote branch, and whe...
This tutorial contains a number of tips and strategies for using Git more effectively. It will cover how to create a workspace, how to convert an existing pr…
In this chapter, we're going to create a minimalist transcoder, written in C, that can convert videos coded in H264 to H265 using FFmpeg/libav library specifically libavcodec, libavformat, and libavutil.Just a quick recap: The AVFormatContext is the abstraction for the format of the media ...