How to access full source code of an old commit

Spread the love

We use GitHub and Bitbucket for version controlling of our any web project and theme at TechnoCrews. Once in a while, we need to fully revert back to any web project. Sometimes, it is quite impossible to track an old commit after a longer period of time. So, what we do if we want to revert back to the old full source code of a project? How to access full source code of an old commit then? Well, there is no short cut way but it is possible to do it!

First, let me give you the solution to How to access full source code of an old commit in GitHub:

You can put the sha that you want in the download URL:

https://github.com/{username}/{projectname}/archive/{sha}.zip

As a general rule, if you have an URL that works, you can replace “master” with the specific sha you want.

if you are comfortable with command line then: 

First, clone the repository using git, e.g. with:

git clone url/yourgit.git

That downloads the complete history of the repository, so you can switch to any version. Next, change into the newly cloned repository:

cd yourgit

and then, use git checkout <COMMIT> to change to the right commit:

git checkout 9gdhfjjhfjhf

Now how to access full source code of an old commit in Bitbucket:

BitBucket project pages have no link to download an arbitrary version. There are links to download specific tags, in the format:

https://bitbucket.org/owner/repository/get/v0.1.2.tar.gz

But by tweaking a bit the URL above, changing the tag name by the commit hash, like:

https://bitbucket.org/owner/repository/get/COOMITNUMBER.tar.gz

or

https://bitbucket.org/owner/repository/get/COMMITNUMBERXXXXX.tar.gz

where XXXXX is the 5 alphanumeric number from the URL structure of the source.

 

Hope it will help you to manage any big revert back to change your code. Let me know if you need more help by commenting out. I would love to hear any new way of doing so.


Spread the love

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Articles

বাংলাদেশ রেলওয়ের অনলাইন টিকেট বুকিং এর বিভিন্ন টিকেট ক্লাস

Spread the love

Spread the loveআজ বাংলাদেশ রেলওয়ের টিকেট কিনলাম অনলাইনে। একটা প্রোগ্রাম এটেন্ড করতে যাব প্লাস কিছু গেস্ট আসবে এই কারনে। তো অনলাইনে টিকেট কিনতে যাবার পর ঘটলো বিপত্তি। কারন আমি নরমালি ৩ টা সিট নিয়ে ধারনা রাখি। শোভন চেয়ার সুলভ আর স্নিগ্ধা তো যখন টিকেট কিনতে


Spread the love

Yoda Style Conditionals ( Yoda Condition) Explained (Bengali/বাংলায়)

Spread the love

Spread the loveআমরা যারা প্রোগ্রামিং কিংবা ডেভেলপমেন্ট করি তাদের অনেকসময় সবকিছু ঠিকঠাকমত কন্ডিশন লেখার পরও দেখা যায় প্রোগ্রাম ভুল বিহেভ করে। এর পিছনে কিন্তু বিশাল একটা কিছুর হাত আছে। আমরা যখন কোন অপারেশন চালাই সেটা যদি ঠিকমত ঘটে তাহলে তাকে প্রোগ্রামিং এর ভাষায় ট্রু কেইস


Spread the love

দুই তিন মাসেই হয়ে যান লাখপতি, অনলাইন ক্যারিয়ারের মাধ্যমে! কতখানি সম্ভব?

Spread the love

Spread the loveএকটা কমন ট্রেন্ড লক্ষ্য করছি যে, সবাই শেষ ভরসা হিসেবে চেষ্টা করছেন অনলাইনে কিছু একটা উপার্জন করতে অথবা ফ্রিল্যান্স করতে। ব্যাপারটা কেমন একটা হাস্যকর বিষয় হয়ে যায় অর্থাৎ আপনি সর্বশেষ সব কিছুতে যখন ফেইল করছেন তখনই আসলে অনলাইনকে ক্যারিয়ার হিসেবে বেঁছে নিতে আসছেন।


Spread the love