git clone [https://github.com/ssayeb7/target-repo.git](https://github.com/ssayeb7/target-repo.git)
cd target-repo যে রিপোর ব্রাঞ্চে অন্য রিপোর ফাইল এড হবে সে রিপোর লিঙ্ক
git remote add source-repo [https://github.com/ssayeb7/source-repo.git](https://github.com/ssayeb7/source-repo.git) যে রিপো থেকে সোর্স ফাইল নিতে চাচ্ছি তার লিঙ্ক
git fetch source-repo মেইন রিপোর ফাইলের সাথে সোর্স রিপোর ফাইল সিঙ্ক হবে
git checkout -b new-branch-name source-repo/main নতুন ব্রাঞ্চের নাম দিতে হবে
git push origin new-branch-name নতুন রিপোতে পুশ
target-repo, source-repo, new-branch-name এগুলো চেইঞ্জ করে নিতে হবে।