Git and GitHub Beginner Tutorial 7 - Git Tags - what, why, when and how

Поделиться
HTML-код
  • Опубликовано: 4 окт 2024
  • All Courses - automationstep...
    Git TAGS - What | Why | When | How
    Today We will learn:
    -------------------------------
    1. What are tags / releases
    2. Why should i create TAGs
    3. When to create TAGs
    4. How to create TAGs in git
    create | show | publish | delete
    Step 1:
    Checkout the branch where you want to create the tag
    git checkout "branch name"
    example : git checkout master
    ________________________________________________________
    Step 2:
    Create tag with some name
    git tag "tag name"
    example : git tag v1.0
    git tag -a v1.0 -m "ver 1 of .." (to create annotated tags)
    ________________________________________________________
    Step 3:
    Display or Show tags
    git tag
    git show v1.0
    git tag -l “v1.*”
    ________________________________________________________
    Step 4:
    Push tags to remote
    git push origin v1.0
    git push origin --tags
    git push --tags
    (to push all tags at once)
    ________________________________________________________
    Step 5:
    Delete tags (if required only)
    to delete tags from local :
    git tag -d v1.0
    git tag --delete v1.0
    to delete tags from remote :
    git push origin -d v1.0
    git push origin --delete v1.0
    git push origin :v1.0
    to delete multiple tags at once:
    git tag -d v1.0 v1.1 (local)
    git push origin -d v1.0 v1.1 (remote)
    ________________________________________________________
    Checking out TAGS
    We cannot checkout tags in git
    We can create a branch from a tag and checkout the branch
    git checkout -b "branch name" "tag name"
    example : git checkout -b ReleaseVer1 v1.0
    ________________________________________________________
    Creating TAGS from past commits
    git tag "tag name" "reference of commit"
    example : git tag v1.2 5fcdb03
    _______ ONLINE COURSES TO LEARN _______
    Visit - automationstep...
    ----------- UI TESTING -----------
    Selenium Beginners - bit.ly/2MGRS8K
    Selenium Java Framework from Scratch - bit.ly/2N9xvR6
    Selenium Python - bit.ly/2oyMp5x
    Selenium Tips - bit.ly/2owxc50
    Selenium Builder - bit.ly/2MKNtlq
    Katalon Studio - bit.ly/2wARFdi
    Robot Framework - bit.ly/2Px6Ue9
    ----------- API TESTING -----------
    Web Services (API) - bit.ly/2MGafL7
    SoapUI - bit.ly/2MGahmd
    Postman - bit.ly/2wz8LrW
    General - bit.ly/2PYdwmV
    ----------- MOBILE TESTING -----------
    Mobile Playlist - bit.ly/2PxpeUv
    ----------- CI | CD | DEVOPS -----------
    Jenkins Beginner - bit.ly/2MIn8EC
    Jenkins Tips & Trick - bit.ly/2LRt6xC
    Docker - bit.ly/2MInnzx
    ----------- VERSION CONTROL SYSTEM -----------
    Git & GitHub - bit.ly/2Q1pagY
    ----------- PERFORMANCE TESTING -----------
    JMeter Beginner - bit.ly/2oBbtIU
    JMeter Intermediate - bit.ly/2oziNVB
    JMeter Advanced - bit.ly/2Q22Y6a
    JMeter Tips & Tricks - bit.ly/2NOfWD2
    Performance Testing - bit.ly/2wEXbLS
    ----------- JAVA -----------
    Java Beginners - bit.ly/2PVUcXs
    Java Tips & Tricks - bit.ly/2CdcDnJ
    ----------- MAVEN -----------
    Maven - bit.ly/2NJdDRS
    ----------- OTHERS -----------
    Redis- bit.ly/2N9jyCG
    Misc - bit.ly/2Q2q5xQ
    Tools & Tips - bit.ly/2oBfwoR
    QnA Friday- bit.ly/2NgwGpw
    Sunday Special - bit.ly/2wB23BO
    Ask Raghav- bit.ly/2CoJGWf
    Interviews - bit.ly/2NIPPxk
    All Playlists - bit.ly/2LSiezA
    ----------- Follow -----------
    Facebook - / automationstepbystep
    Twitter - / automationsbs
    RUclips - / automationstepbystep
    You can support my mission for education by sharing this knowledge and helping as many people as you can.

Комментарии • 327

  • @thoutreddysony6748
    @thoutreddysony6748 3 года назад +20

    Thanks a ton sir. In the age of click baits and non-sense intros, You were on point and clear. Subscribed ! :)

  • @hamedkhajat5916
    @hamedkhajat5916 2 года назад +9

    Thank you, Sir. short, clear, informative, exact, and directly to the point. Well done and keep it up!

  • @ogropor
    @ogropor 2 года назад +3

    Very simplicist and clear. So much quality. Thank You.

  • @bvisonl
    @bvisonl 7 лет назад +32

    subscribed immediately... long time since I saw a tutorial so straight forward and helpful... thank you very much and keep it up!

    • @RaghavPal
      @RaghavPal  7 лет назад +1

      Benjamin, thanks for subscribing and liking the video.

  • @varshathaker1056
    @varshathaker1056 6 лет назад +1

    You explain so clearly Raghav .. Probably the best tutor for testing tools ... Thanks a huge .. Appreciate your effort!

    • @RaghavPal
      @RaghavPal  6 лет назад

      Thanks a lot for this wonderful message Dhanavarsha. I am humbled.

  • @yogesh1514ya
    @yogesh1514ya Год назад +1

    Thanks Raghav for such a wonderful and precise explanation in a short video. Really appreciate your knowledge and efforts. Keep it up! Thanks..

  • @warronfrench8163
    @warronfrench8163 3 года назад

    Today, I realized that I want to know how to manage `tagged' versions of code in various projects. I knew how to do it via the webUI, but this video showed me how to do it from command-line. Thanks again!

  • @vrityaggarwal8300
    @vrityaggarwal8300 3 года назад +3

    Thanks a lot👍 I got the clarity point to point, and exactly the introduction I was looking for 👍

    • @RaghavPal
      @RaghavPal  3 года назад +1

      You are welcome Vrity

  • @NSMetaLpig
    @NSMetaLpig 3 года назад

    this tutorials is the best with sample code in the description, not all heroes ware cape, salute!

    • @RaghavPal
      @RaghavPal  3 года назад

      I appreciate that! happy & humbled to see your message

  • @srinathg3051
    @srinathg3051 5 лет назад +2

    Liked all the Raghav's videos , the way he explains and content he took is very good , simple and clear, keep it up and expecting some more DevOps concepts like ansible and other stuff ... :)

    • @RaghavPal
      @RaghavPal  5 лет назад +1

      Happy to see this Srinath, Will do more devops topics

  • @artistprudential
    @artistprudential 4 месяца назад +1

    So accurate video on git tags

    • @RaghavPal
      @RaghavPal  4 месяца назад

      Thanks a lot Aniket.. humbbled

  • @shalinib1331
    @shalinib1331 7 лет назад +3

    Thanks Raghav. all your sessions are really really good, interesting and useful . I have learned Jenkins and Git from your tutorial. Thanks for that.
    Also could you please record and post few sessions for Ansible please...

  • @vishnuthamizharasan6192
    @vishnuthamizharasan6192 4 года назад +2

    Great video, crystal clear about the git tag concept. Amazing tutorial

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Glad it was helpful Vishnu

  • @samislam2746
    @samislam2746 3 года назад +1

    short, informative, no boring parts. thanks

    • @RaghavPal
      @RaghavPal  3 года назад

      Glad it was helpful Sam

  • @johnxenakis8132
    @johnxenakis8132 3 года назад +2

    Wonderful video tut man! Very detailed and with no bs! Exact and straight to the point!

    • @RaghavPal
      @RaghavPal  3 года назад

      Glad to know it helped John

  • @Elliria_home
    @Elliria_home Год назад

    This was an absolutely perfect presentation. Beautifully done. Loved it.

    • @RaghavPal
      @RaghavPal  Год назад +1

      Thank you so much Elliria

  • @MrRajeshrana
    @MrRajeshrana 7 лет назад +1

    A video on pulling the data from remote repository, comparing files and resolving conflicts would be very helpful here !!! Thanks for the series !!!!

    • @RaghavPal
      @RaghavPal  7 лет назад +2

      Sure, will try to add some soon.

    • @mrbee5183
      @mrbee5183 5 лет назад

      @@RaghavPal Waiting for a video over this topic

    • @bmkrissh8714
      @bmkrissh8714 5 лет назад

      @@RaghavPal Hi, Can you add one please?

  • @kavindutharaka2273
    @kavindutharaka2273 2 года назад

    Clear and Concise. The best tutorial about Tags. Thank you. ❤

    • @RaghavPal
      @RaghavPal  2 года назад

      Glad it was helpful!

  • @sadiqmmm
    @sadiqmmm 4 года назад +2

    Really amazing video on git tags. Simple and Easy. Thanks a lot. Subscribed!!

    • @RaghavPal
      @RaghavPal  4 года назад

      Awesome, thank you Sadiq

  • @arturocardenas7095
    @arturocardenas7095 2 года назад

    The best video about it so far.

  • @mepolob
    @mepolob 2 месяца назад

    Clear concise and to the point.
    Thank You Sir 🙏

  • @x_Gorilla
    @x_Gorilla Год назад

    great simple straight forward video - this helped alot - always make videos like this!

  • @LifeInMoncton
    @LifeInMoncton 6 лет назад

    One of the best series of tutorials... priceless!!!

    • @RaghavPal
      @RaghavPal  6 лет назад

      Thanks for your message Shashika

  • @nishanthi.p1934
    @nishanthi.p1934 6 лет назад

    A simple and clean one. Helps for the newbies in git tagging.
    Thanks

  • @jaminDNB
    @jaminDNB 10 месяцев назад

    Absolutely stellar content, Raghav! 🚀 The clarity in explanations and well-crafted examples make learning a joy. Your work is an invaluable resource for expanding my knowledge. Keep the brilliance coming! 🌟💻📚

    • @RaghavPal
      @RaghavPal  10 месяцев назад

      Awesome, thank you!

  • @floroz87
    @floroz87 4 года назад +2

    great tutorial! clean and straight to the point with great visual aid.

    • @RaghavPal
      @RaghavPal  4 года назад

      Happy to know it helped Daniele

  • @sandeep56944
    @sandeep56944 6 лет назад

    You are a rock star, i have watched almost 10 videos on git but couldnt get the clear, but luckily after watching your videos i have now got a good idea on this and also just curious to know there are only 7 git videos and can we expect

    • @RaghavPal
      @RaghavPal  6 лет назад

      Hi Sandeep, great to know this, Yes as of now there are 7 videos in this series.

  • @GiriAlkondanSubbiah
    @GiriAlkondanSubbiah 7 лет назад +2

    well done. nicely explained. Git tag is the best one so far in this series. Please post tuts on git cherry pick topic

    • @RaghavPal
      @RaghavPal  7 лет назад

      i am glad it helped. Keep learning.

  • @piterbrito4590
    @piterbrito4590 2 года назад

    I loved the video, straight to the point and with good examples.

  • @krishkarki9795
    @krishkarki9795 6 лет назад +2

    Your way of explanation is awesome ! I have been following your videos and learning a lot from it. Thanks for helping learning community. Will you be making series on other technologies like AWS, Ansible, Puppet etc ?

    • @RaghavPal
      @RaghavPal  6 лет назад

      Hi Krish, i am glad to hear this. I will definitely be making sessions on these topics.

  • @BenStoneking
    @BenStoneking 2 года назад

    Excellent video! Concise yet thorough. Well done and thank you!

  • @bonaws
    @bonaws 4 года назад +1

    You explain it really well. Good job dude !

  • @eric69969
    @eric69969 Год назад

    A neat and tidy one. Thank you so much!

  • @somasekhar620
    @somasekhar620 3 года назад

    You made it simple and clear.

    • @RaghavPal
      @RaghavPal  3 года назад

      So happy to know Soma

  • @tural.ahmatov
    @tural.ahmatov Год назад

    Great explanation, Sir. Thank you very much!

  • @mayuriingale8245
    @mayuriingale8245 7 лет назад +1

    Raghav thank you so much again for your amazing video.....your videos are always clear and easy to understand...hope to see your videos on postman api test..

    • @RaghavPal
      @RaghavPal  7 лет назад +1

      Mayuri, thanks for watching. Will add more on api testing soon.

    • @RaghavPal
      @RaghavPal  6 лет назад

      Hi Mayuri, link for Postman Beginner Tutorials playlist - ruclips.net/p/PLhW3qG5bs-L-oT0GenwPLcJAPD_SiFK3C

  • @saikatshahriar8355
    @saikatshahriar8355 2 года назад

    Short and well explained. Great job, thanks!

  • @rockstar-ek4xt
    @rockstar-ek4xt 5 лет назад

    You make things seem so easy and cool Raghav.. Always simple and good stuff from you... Nice one.

  • @marvinkweyu5206
    @marvinkweyu5206 5 лет назад

    Love the video. You explained like I'm five and that's a big plus for any tutorial.

    • @RaghavPal
      @RaghavPal  5 лет назад

      So happy to know this Marvin

  • @robinewers2402
    @robinewers2402 4 года назад

    you could add times in the description for more convenience. e.g. i was just looking for the how to publish info and had to Fastforward quite a bit

    • @RaghavPal
      @RaghavPal  4 года назад

      Sure Robin. Hope it was helpful

  • @dhananjay677
    @dhananjay677 2 года назад

    Extremely great video sir . Please create series of devops video.

  • @OddBallTrails
    @OddBallTrails 5 лет назад +1

    Thank you Sir. I always enjoy your tutorials.....please make a video on git stash and git cherry also.

  • @wilsoncardoso150
    @wilsoncardoso150 6 лет назад +1

    Thank you so much for your time and effort, for sharing your knowledge with us. Thank you and keep the good work.

    • @RaghavPal
      @RaghavPal  6 лет назад

      Thanks Wilson, appreciate your message

  • @sureshm703
    @sureshm703 Год назад +1

    Thanks Raghav, session is useful. After knowing about the tag concept i have two questions in my mind.
    what do I do with the tags?
    What is their benefit besides just marking a milestone or downloading a working code directly from that tag.?

    • @RaghavPal
      @RaghavPal  Год назад

      Hi, you can use a tag to mark an individual point in your repository's history, including a version number for a release
      cloudservicestutorial.com/benefits-of-git-tagging-in-devops-release/

  • @zaibkhan4862
    @zaibkhan4862 Год назад

    Thank you very much sir, your explanation was great 👍

  • @roi_4_dayz
    @roi_4_dayz 10 месяцев назад

    Great tutorial! Easy to understand

    • @RaghavPal
      @RaghavPal  10 месяцев назад

      Glad it was helpful

  • @azaifel
    @azaifel 3 года назад

    best video on tagging. thanks

    • @RaghavPal
      @RaghavPal  3 года назад

      So happy & humbled Abdulaziz

  • @Jose_T131
    @Jose_T131 2 года назад

    Maestro, excellent content. Thanks

  • @bermarte
    @bermarte 2 года назад

    Really well explained! Also subscribed immediately.

  • @Rakesh-fc1wr
    @Rakesh-fc1wr 3 года назад

    Straight on point , saved time ✊

  • @sandeepsk5817
    @sandeepsk5817 7 лет назад

    Thanks for these videos mate, it's crisp and clear.

  • @thenavinpista
    @thenavinpista 2 года назад

    so clear and to the point.

  • @nickverheijen2097
    @nickverheijen2097 5 лет назад +1

    Very good tutorial, exactly what I was looking for. Thanks for the effort!

  • @edmundesparas9338
    @edmundesparas9338 11 месяцев назад

    Very clear explanation!

    • @RaghavPal
      @RaghavPal  11 месяцев назад

      Glad it was helpful Edmund

  • @techtalks219
    @techtalks219 6 лет назад

    worth spending 10 mins, Thanks Raghav

  • @tosanjaysaraf
    @tosanjaysaraf 4 года назад +1

    Sweet and simple Thank you!!!

    • @RaghavPal
      @RaghavPal  4 года назад

      You're welcome Sanjay

  • @jabuci
    @jabuci 2 года назад

    Thanks! Exactly what I needed.

  • @ankitminz5872
    @ankitminz5872 4 года назад

    Very well explained. Thanks

    • @RaghavPal
      @RaghavPal  4 года назад

      You are welcome Ankit

  • @travisjansen7413
    @travisjansen7413 5 лет назад

    Clear and concise! Very well done...

    • @RaghavPal
      @RaghavPal  5 лет назад

      Thanks for watching Travis

  • @ayoutubechannel.1733
    @ayoutubechannel.1733 2 года назад

    This was a very good video! Thank you so much!!

  • @sita00ful
    @sita00ful 4 года назад

    very clear explanation...keep uploading more such videos

    • @RaghavPal
      @RaghavPal  4 года назад

      Sure. thanks for watching

  • @__mas
    @__mas 3 месяца назад

    Brilliant - well done.

  • @sandunmadushan1732
    @sandunmadushan1732 4 года назад

    very clear content. Thank you very much

    • @RaghavPal
      @RaghavPal  4 года назад

      You are welcome Sandun

  • @awaisrashid1479
    @awaisrashid1479 2 года назад

    Thanks
    you described really well 👍

  • @PakArchives
    @PakArchives 4 года назад

    Awesome tutorial bro. Thanks

  • @hiteshaloney
    @hiteshaloney 4 года назад

    wonderfully explained 👍

    • @RaghavPal
      @RaghavPal  4 года назад

      Glad it was helpful Hitesh

  • @user-viskqlkqudh
    @user-viskqlkqudh 5 лет назад

    Very clear and neat explanation ever ! Thank you a lot !

  • @pankajjha7325
    @pankajjha7325 3 года назад

    So easy to understand and It was very helpful. Thanks a lot for your effort. Already subscribed.

    • @RaghavPal
      @RaghavPal  3 года назад

      Awesome, thank you Pankaj

  • @super_power_tech
    @super_power_tech 4 года назад

    Great tutorial. It helped me.

    • @RaghavPal
      @RaghavPal  4 года назад

      Glad it helped Anatolii

  • @virajsh
    @virajsh 3 года назад

    Very good tutorial Thanks !

  • @moss2309
    @moss2309 6 лет назад +1

    Thank you for this tutorial. IT is very simple to understand. :)

    • @RaghavPal
      @RaghavPal  6 лет назад

      Great to know this Michael

  • @BhavdeepHere
    @BhavdeepHere 4 года назад

    excellent session on Git Tags

    • @RaghavPal
      @RaghavPal  4 года назад

      Great to know this Bhavdeep

  • @sangramdesai4295
    @sangramdesai4295 3 года назад

    Thanks dude saved lot of time

    • @RaghavPal
      @RaghavPal  3 года назад

      Most welcome Sangram

  • @mv8167
    @mv8167 Год назад

    Thank you, very good tutorial for Git. How are merge conflicts reminded?

    • @RaghavPal
      @RaghavPal  Год назад

      Most welcome Mike.
      In Git, a merge conflict occurs when multiple branches have changed the same part of a file and Git cannot automatically resolve the changes. When this happens, Git reminds you of the conflict by marking the conflicting lines in the file and requiring you to resolve the conflict before completing the merge.
      Here's an example of how a merge conflict may appear in a file:
      > branch-name
      The > branch-name lines indicate the start and end of the conflicting changes. The ======= line separates the changes made in your current branch from the changes made in the branch you're merging.
      To resolve a merge conflict, you need to edit the file and choose which changes to keep and which to discard. You can then use Git to mark the conflict as resolved and complete the merge.

  • @Nazirov1991
    @Nazirov1991 7 лет назад +1

    Awesome tutorial buddy. Keep it up!!

    • @RaghavPal
      @RaghavPal  7 лет назад

      Thanks for watching Sardor

  • @MdSiam-kw5ox
    @MdSiam-kw5ox 2 года назад

    Thanks for this video.

  • @rise4gamers506
    @rise4gamers506 Год назад

    Thanks for your efforts

  • @joerivde
    @joerivde 3 года назад

    Very helpful, thanks!

    • @RaghavPal
      @RaghavPal  3 года назад

      Glad it was helpful!

  • @bksu1296
    @bksu1296 2 года назад

    Thank you sir it's helps a lot...☺️

  • @matudhay
    @matudhay 7 лет назад +1

    Awesome. Appreciate and thanks for your effort.

  • @surajoberai
    @surajoberai 3 года назад

    I pushed my first tag(version) , thank you ✍

    • @RaghavPal
      @RaghavPal  3 года назад

      So great to know Suraj

  • @raphaelpaulino
    @raphaelpaulino 5 лет назад

    Excellent tutorial! Thanks for share your knowledge!

    • @RaghavPal
      @RaghavPal  5 лет назад

      You're welcome Raphael

  • @lakshayarora3935
    @lakshayarora3935 4 года назад

    Nice video. Very well explained :)

    • @RaghavPal
      @RaghavPal  4 года назад

      Glad it helped Lakshay

  • @atulpipaliya972
    @atulpipaliya972 4 года назад

    Awesome explanation keep going man Good Luck

  • @learnWithWally
    @learnWithWally 6 лет назад

    Thank you so much for your time and effort. It helped me a lot.

    • @RaghavPal
      @RaghavPal  6 лет назад

      Great to know this Walid

  • @VladyVeselinov
    @VladyVeselinov 4 года назад

    Excellent

  • @mohamedemadahmed4943
    @mohamedemadahmed4943 3 года назад

    very clear.. thanks

    • @RaghavPal
      @RaghavPal  3 года назад

      You are welcome Emad

  • @sandeepa4116
    @sandeepa4116 5 лет назад

    Very informative. Thank you so much.

    • @RaghavPal
      @RaghavPal  5 лет назад

      You're welcome Sandeep

  • @kareenmarie8586
    @kareenmarie8586 2 года назад

    i enjoyed and understood thanks

    • @RaghavPal
      @RaghavPal  2 года назад

      You are welcome!

    • @kareenmarie8586
      @kareenmarie8586 2 года назад

      you have any videos one if statements or case statements

  • @koripallianvesh880
    @koripallianvesh880 7 лет назад

    Thank you very much Raghav, very much helpful to me. Just need a clarification on what is the use of
    -u in git push command. Thanks

    • @RaghavPal
      @RaghavPal  7 лет назад

      Hi Koripalli, -u = --set-upstream
      stackoverflow.com/questions/5697750/what-exactly-does-the-u-do-git-push-u-origin-master-vs-git-push-origin-ma

  •  4 года назад

    Great stuff, thanks

    • @RaghavPal
      @RaghavPal  4 года назад

      Glad you enjoyed it Germán

  • @StoryOfOurMarriage
    @StoryOfOurMarriage 3 года назад

    Thanks a lot for details ! Subscribed

    • @RaghavPal
      @RaghavPal  3 года назад +1

      Awesome, thank you! Ritesh

    • @StoryOfOurMarriage
      @StoryOfOurMarriage 3 года назад

      @@RaghavPal Thanks again ! Excited to check all of ur channel videos .
      Keep posting 👏

    • @RaghavPal
      @RaghavPal  3 года назад +1

      Most welcome. can check all here - automationstepbystep.com/

  • @birajsarma4685
    @birajsarma4685 7 лет назад +1

    Gud one...waiting for your next tutiorals.
    Apart from jenkins & git do you have any other tutorials?

    • @RaghavPal
      @RaghavPal  7 лет назад

      Hi Biraj, you can see all playlists here - ruclips.net/channel/UCTt7pyY-o0eltq14glaG5dgplaylists

    • @birajsarma4685
      @birajsarma4685 6 лет назад

      thanks..can You give some videos on git conflict,git rebase & git fetch & pull

  • @TheHuntingSpot
    @TheHuntingSpot 3 года назад

    It seems weird that tags aren't committed and pushed like regular code. It's also odd that if I add a tag while on Branch1 and then I delete Branch1 the tag still exists in the Git Repo.

    • @RaghavPal
      @RaghavPal  3 года назад

      will try to explore more on this

  • @tawseefwani826
    @tawseefwani826 7 лет назад

    Thanks a lot Raghav!!
    It solved my problem :)

    • @RaghavPal
      @RaghavPal  7 лет назад +1

      This is great to know Tawseef

  • @The2Coolest2
    @The2Coolest2 3 года назад

    Thank you very much

  • @aldocostasantos6965
    @aldocostasantos6965 5 лет назад

    a pretty complete video, thanks for this

  • @saggysri6646
    @saggysri6646 4 года назад

    great video

    • @RaghavPal
      @RaghavPal  4 года назад

      Thanks for the visit

  • @warronfrench8163
    @warronfrench8163 4 года назад

    Great tutorial, I think I even understood it all. I have been trying to learn more and more about Git for the last 3.5 years and it wasn't until 4 weeks ago that I finally started trying to push commits to something other than the master branch.
    Can I git tag something already committed, pushed, and merged into the master branch? Isn't git tagging typically associated with *master* branches anyway?

    • @RaghavPal
      @RaghavPal  4 года назад

      You can do that Warron. Can get more info here - git-scm.com/book/en/v2/Git-Basics-Tagging

  • @swapni101
    @swapni101 5 лет назад +1

    Good Tutorial...!