You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Each time I use [git clone] command, the speed is different in my linux server.
ex 1)
git clone --progress https://bitbucket.org/mirror/git.git
Initialized empty Git repository in /root/git/.git/
remote: Counting objects: 234594, done.
remote: Compressing objects: 100% (67582/67582), done.
^Cceiving objects: 70% (164216/234594), 31.89 MiB | 2.72 MiB/s
ex 2)
git clone --progress https://bitbucket.org/mirror/git.git
Initialized empty Git repository in /root/git/.git/
remote: Counting objects: 234594, done.
remote: Compressing objects: 100% (67582/67582), done.
^Cceiving objects: 0% (528/234594), 196.00 KiB | 39 KiB/s
Why? and tell me how to solved it issue